Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 873e5ba

Browse files
committed
Address PR comments.
1 parent c36cfc4 commit 873e5ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/dart_isolate.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ std::weak_ptr<DartIsolate> DartIsolate::CreateRunningRootIsolate(
129129

130130
fml::ScopedCleanupClosure shutdown_on_error([isolate]() {
131131
if (!isolate->Shutdown()) {
132-
FML_DLOG(ERROR) << "Could not transient isolate.";
132+
FML_DLOG(ERROR) << "Could not shutdown transient isolate.";
133133
}
134134
});
135135

runtime/dart_isolate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class DartIsolate : public UIDartState {
6363
public:
6464
class Flags {
6565
public:
66-
explicit Flags();
66+
Flags();
6767

6868
explicit Flags(const Dart_IsolateFlags* flags);
6969

0 commit comments

Comments
 (0)