From b64200b910eb7178590b7a6f2e69f1bae602beda Mon Sep 17 00:00:00 2001 From: kibeom lee <46297213+lkb85@users.noreply.github.com> Date: Thu, 6 Feb 2025 20:41:47 +0900 Subject: [PATCH] Fix typo in comments (#57265) --- flow/testing/gl_context_switch_test.h | 2 +- .../embedding/engine/systemchannels/PlatformChannel.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flow/testing/gl_context_switch_test.h b/flow/testing/gl_context_switch_test.h index 0f933d2bf9f80..f0135277ee656 100644 --- a/flow/testing/gl_context_switch_test.h +++ b/flow/testing/gl_context_switch_test.h @@ -30,7 +30,7 @@ class TestSwitchableGLContext : public SwitchableGLContext { //------------------------------------------------------------------------------ /// Set the current context /// - /// This is to mimic how other programs outside flutter sets the context. + // This is to mimic how other programs outside flutter set the context. static void SetCurrentContext(int context); private: diff --git a/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java b/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java index d3fd6774fa6f7..253f6866aba98 100644 --- a/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java +++ b/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java @@ -686,7 +686,7 @@ static SystemUiMode fromValue(@NonNull String encodedName) throws NoSuchFieldExc @NonNull private String encodedName; - /** Returens the encoded {@link SystemUiMode} */ + /** Returns the encoded {@link SystemUiMode} */ SystemUiMode(@NonNull String encodedName) { this.encodedName = encodedName; }