From dec3b1e20e9d4a5477f32b6a2f3a172edaee886d Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Fri, 21 Feb 2025 16:27:33 +1300 Subject: [PATCH] Fix incorrect function name in FlutterEngineRun documentation (#163696) --- engine/src/flutter/shell/platform/embedder/embedder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/shell/platform/embedder/embedder.h b/engine/src/flutter/shell/platform/embedder/embedder.h index d9390466aba..a0700aa13a1 100644 --- a/engine/src/flutter/shell/platform/embedder/embedder.h +++ b/engine/src/flutter/shell/platform/embedder/embedder.h @@ -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. ///