瀏覽代碼

[RN] Fix documentation

master
Lyubo Marinov 7 年之前
父節點
當前提交
e830b80b6b

+ 7
- 7
android/README.md 查看文件

@@ -215,35 +215,35 @@ boilerplate.
215 215
 Called when a joining a conference was unsuccessful or when there was an error
216 216
 while in a conference.
217 217
 
218
-The `data` HashMap contains an "error" key describing the error and a "url"
219
-key with the conference URL.
218
+The `data` `Map` contains an "error" key describing the error and a "url" key
219
+with the conference URL.
220 220
 
221 221
 #### onConferenceJoined
222 222
 
223 223
 Called when a conference was joined.
224 224
 
225
-The `data` HashMap contains a "url" key with the conference URL.
225
+The `data` `Map` contains a "url" key with the conference URL.
226 226
 
227 227
 #### onConferenceLeft
228 228
 
229 229
 Called when a conference was left.
230 230
 
231
-The `data` HashMap contains a "url" key with the conference URL.
231
+The `data` `Map` contains a "url" key with the conference URL.
232 232
 
233 233
 #### onConferenceWillJoin
234 234
 
235 235
 Called before a conference is joined.
236 236
 
237
-The `data` HashMap contains a "url" key with the conference URL.
237
+The `data` `Map` contains a "url" key with the conference URL.
238 238
 
239 239
 #### onConferenceWillLeave
240 240
 
241 241
 Called before a conference is left.
242 242
 
243
-The `data` HashMap contains a "url" key with the conference URL.
243
+The `data` `Map` contains a "url" key with the conference URL.
244 244
 
245 245
 #### onLoadConfigError
246 246
 
247 247
 Called when loading the main configuration fails.
248 248
 
249
-The `data` HashMap contains a "error" key with the error.
249
+The `data` `Map` contains an "error" key with the error.

+ 1
- 1
android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetViewListener.java 查看文件

@@ -62,7 +62,7 @@ public interface JitsiMeetViewListener {
62 62
     /**
63 63
      * Called when loading the main configuration fails.
64 64
      *
65
-     * @param data - Map with a "error" key with the error.
65
+     * @param data - Map with an "error" key with the error.
66 66
      */
67 67
     void onLoadConfigError(Map<String, Object> data);
68 68
 }

+ 1
- 1
ios/README.md 查看文件

@@ -155,4 +155,4 @@ The `data` dictionary contains a "url" key with the conference URL.
155 155
 
156 156
 Called when loading the main configuration fails.
157 157
 
158
-The `data` dictionary contains a "error" key with the error.
158
+The `data` dictionary contains an "error" key with the error.

+ 1
- 1
ios/sdk/src/JitsiMeetViewDelegate.h 查看文件

@@ -62,7 +62,7 @@
62 62
 /**
63 63
  * Called when loading the main configuration file fails.
64 64
  *
65
- * The {@code data} dictionary contains a {@code error} key with the error.
65
+ * The {@code data} dictionary contains an {@code error} key with the error.
66 66
  */
67 67
 - (void) loadConfigError:(NSDictionary *)data;
68 68
 

Loading…
取消
儲存