| Index: runtime/vm/dart_api_impl.cc
|
| diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
|
| index fa48aeee52b36bf6c82b24b8434e6451cbb43796..3b151fef59ffd829fda756da42a980bb4cef1df0 100644
|
| --- a/runtime/vm/dart_api_impl.cc
|
| +++ b/runtime/vm/dart_api_impl.cc
|
| @@ -1301,7 +1301,7 @@ static Dart_Isolate CreateIsolate(const char* script_uri,
|
| // We exit the API scope entered above.
|
| Dart_ExitScope();
|
| // A Thread structure has been associated to the thread, we do the
|
| - // safepoint transition explicity here instead of using the
|
| + // safepoint transition explicitly here instead of using the
|
| // TransitionXXX scope objects as the reverse transition happens
|
| // outside this scope in Dart_ShutdownIsolate/Dart_ExitIsolate.
|
| T->set_execution_state(Thread::kThreadInNative);
|
| @@ -1352,7 +1352,7 @@ DART_EXPORT void Dart_ShutdownIsolate() {
|
| HandleScope handle_scope(T);
|
| Dart::RunShutdownCallback();
|
| // The Thread structure is disassociated from the isolate, we do the
|
| - // safepoint transition explicity here instead of using the TransitionXXX
|
| + // safepoint transition explicitly here instead of using the TransitionXXX
|
| // scope objects as the original transition happened outside this scope in
|
| // Dart_EnterIsolate/Dart_CreateIsolate.
|
| T->ExitSafepoint();
|
| @@ -1404,7 +1404,7 @@ DART_EXPORT void Dart_EnterIsolate(Dart_Isolate isolate) {
|
| "Dart VM is shutting down");
|
| }
|
| // A Thread structure has been associated to the thread, we do the
|
| - // safepoint transition explicity here instead of using the
|
| + // safepoint transition explicitly here instead of using the
|
| // TransitionXXX scope objects as the reverse transition happens
|
| // outside this scope in Dart_ExitIsolate/Dart_ShutdownIsolate.
|
| Thread* T = Thread::Current();
|
| @@ -1546,7 +1546,7 @@ DART_EXPORT void Dart_ExitIsolate() {
|
| Thread* T = Thread::Current();
|
| CHECK_ISOLATE(T->isolate());
|
| // The Thread structure is disassociated from the isolate, we do the
|
| - // safepoint transition explicity here instead of using the TransitionXXX
|
| + // safepoint transition explicitly here instead of using the TransitionXXX
|
| // scope objects as the original transition happened outside this scope in
|
| // Dart_EnterIsolate/Dart_CreateIsolate.
|
| ASSERT(T->execution_state() == Thread::kThreadInNative);
|
| @@ -5883,7 +5883,7 @@ DART_EXPORT Dart_Handle Dart_FinalizeLoading(bool complete_futures) {
|
| I->DoneLoading();
|
|
|
| // TODO(hausner): move the remaining code below (finalization and
|
| - // invoing of _completeDeferredLoads) into Isolate::DoneLoading().
|
| + // invoking of _completeDeferredLoads) into Isolate::DoneLoading().
|
|
|
| // Finalize all classes if needed.
|
| Dart_Handle state = Api::CheckAndFinalizePendingClasses(T);
|
|
|