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

Commit aee0733

Browse files
committed
Address PR comments.
1 parent f858746 commit aee0733

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

shell/platform/embedder/embedder.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -969,9 +969,9 @@ typedef struct {
969969
/// cases where the embedder specifies custom task runners via
970970
/// `FlutterProjectArgs::custom_task_runners`. In such cases, the
971971
/// engine may need the embedder to post tasks back to it before
972-
/// `FluterEngineRun` has returned. Embedders can only post tasks to
973-
/// the engine if they have a handle to the engine. In such cases,
974-
/// embedders are advised to get the engine handle via the
972+
/// `FlutterEngineRun` has returned. Embedders can only post tasks
973+
/// to the engine if they have a handle to the engine. In such
974+
/// cases, embedders are advised to get the engine handle via the
975975
/// `FlutterInitializeCall`. Then they can call
976976
/// `FlutterEngineRunInitialized` knowing that they will be able to
977977
/// service custom tasks on other threads with the engine handle.
@@ -995,7 +995,7 @@ FlutterEngineResult FlutterEngineRun(size_t version,
995995
engine_out);
996996

997997
//------------------------------------------------------------------------------
998-
/// @brief Shuts down a Flutter engine Tnstance. the engine handle is no
998+
/// @brief Shuts down a Flutter engine instance. the engine handle is no
999999
/// longer valid for any calls in the embedder API after this point.
10001000
/// Making additional calls with this handle is undefined behavior.
10011001
///
@@ -1059,11 +1059,11 @@ FlutterEngineResult FlutterEngineDeinitialize(FLUTTER_API_SYMBOL(FlutterEngine)
10591059
/// custom task runners supplied by the embedder are expected to
10601060
/// start servicing tasks.
10611061
///
1062-
/// @param[in] engine A initialized engine instance that has not previously
1062+
/// @param[in] engine An initialized engine instance that has not previously
10631063
/// been run.
10641064
///
1065-
/// @return The result of the call to run the initialized the Flutter
1066-
/// engine.
1065+
/// @return The result of the call to run the initialized Flutter
1066+
/// engine instance.
10671067
///
10681068
FLUTTER_EXPORT
10691069
FlutterEngineResult FlutterEngineRunInitialized(

0 commit comments

Comments
 (0)