File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ typedef unsigned short uint16_t;
217
217
/// </summary>
218
218
JsErrorInvalidContext ,
219
219
/// <summary>
220
- /// Module evaluation is called in wrong context .
220
+ /// The Module HostInfoKind provided was invalid .
221
221
/// </summary>
222
222
JsInvalidModuleHostInfoKind ,
223
223
/// <summary>
@@ -237,6 +237,7 @@ typedef unsigned short uint16_t;
237
237
/// Module was not yet evaluated when JsGetModuleNamespace was called.
238
238
/// </summary>
239
239
JsErrorModuleNotEvaluated ,
240
+
240
241
/// <summary>
241
242
/// Category of errors that relates to errors occurring within the engine itself.
242
243
/// </summary>
@@ -922,7 +923,7 @@ typedef unsigned short uint16_t;
922
923
/// <remarks>
923
924
/// Removes a reference to a <c>JsRef</c> handle that was created by <c>JsAddRef</c>.
924
925
/// </remarks>
925
- /// <param name="ref">The object to add a reference to .</param>
926
+ /// <param name="ref">The object to remove the reference from .</param>
926
927
/// <param name="count">The object's new reference count (can pass in null).</param>
927
928
/// <returns>
928
929
/// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
@@ -1051,7 +1052,7 @@ typedef unsigned short uint16_t;
1051
1052
_Out_ JsRuntimeHandle * runtime );
1052
1053
1053
1054
/// <summary>
1054
- /// Tells the runtime to do any idle processing it need to do.
1055
+ /// Tells the runtime to do any idle processing it needs to do.
1055
1056
/// </summary>
1056
1057
/// <remarks>
1057
1058
/// <para>
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ typedef JsErrorCode(CHAKRA_CALLBACK * FetchImportedModuleCallBack)(_In_ JsModule
136
136
/// User implemented callback to fetch imported modules dynamically in scripts.
137
137
/// </summary>
138
138
/// <remarks>
139
- /// The callback is invoked on the current runtime execution thread, therefore execution is blocked untill
139
+ /// The callback is invoked on the current runtime execution thread, therefore execution is blocked until
140
140
/// the callback completes. Notify the host to fetch the dependent module. This is used for the dynamic
141
141
/// import() syntax.
142
142
///
You can’t perform that action at this time.
0 commit comments