浏览代码

[RN] Fix documentation

master
Lyubo Marinov 8 年前
父节点
当前提交
e830b80b6b

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

215
 Called when a joining a conference was unsuccessful or when there was an error
215
 Called when a joining a conference was unsuccessful or when there was an error
216
 while in a conference.
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
 #### onConferenceJoined
221
 #### onConferenceJoined
222
 
222
 
223
 Called when a conference was joined.
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
 #### onConferenceLeft
227
 #### onConferenceLeft
228
 
228
 
229
 Called when a conference was left.
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
 #### onConferenceWillJoin
233
 #### onConferenceWillJoin
234
 
234
 
235
 Called before a conference is joined.
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
 #### onConferenceWillLeave
239
 #### onConferenceWillLeave
240
 
240
 
241
 Called before a conference is left.
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
 #### onLoadConfigError
245
 #### onLoadConfigError
246
 
246
 
247
 Called when loading the main configuration fails.
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
     /**
62
     /**
63
      * Called when loading the main configuration fails.
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
     void onLoadConfigError(Map<String, Object> data);
67
     void onLoadConfigError(Map<String, Object> data);
68
 }
68
 }

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

155
 
155
 
156
 Called when loading the main configuration fails.
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
 /**
62
 /**
63
  * Called when loading the main configuration file fails.
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
 - (void) loadConfigError:(NSDictionary *)data;
67
 - (void) loadConfigError:(NSDictionary *)data;
68
 
68
 

正在加载...
取消
保存