Fix incorrect function name in FlutterEngineRun documentation (#163696)

This commit is contained in:
Robert Ancell 2025-02-21 16:27:33 +13:00 committed by GitHub
parent 9583e0ac12
commit dec3b1e20e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2602,8 +2602,8 @@ FlutterEngineResult FlutterEngineCollectAOTData(FlutterEngineAOTData data);
/// engine may need the embedder to post tasks back to it before
/// `FlutterEngineRun` has returned. Embedders can only post tasks
/// to the engine if they have a handle to the engine. In such
/// cases, embedders are advised to get the engine handle via the
/// `FlutterInitializeCall`. Then they can call
/// cases, embedders are advised to get the engine handle by calling
/// `FlutterEngineInitialize`. Then they can call
/// `FlutterEngineRunInitialized` knowing that they will be able to
/// service custom tasks on other threads with the engine handle.
///