diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java index d25068e8189..ffe4f585139 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java @@ -481,7 +481,7 @@ public class PlatformChannel { * application. * *

{@link SystemUiMode#IMMERSIVE} refers to a fullscreen experience that restores system bars - * upon swiping from the edge of the viewport. This swipe gesture is not recived by the + * upon swiping from the edge of the viewport. This swipe gesture is not received by the * application. * *

{@link SystemUiMode#IMMERSIVE_STICKY} refers to a fullscreen experience that restores @@ -675,7 +675,7 @@ public class PlatformChannel { EDGE_TO_EDGE("SystemUiMode.edgeToEdge"); /** - * Returns the SystemUiMode for the provied encoded value. @throws NoSuchFieldException if any + * Returns the SystemUiMode for the provided encoded value. @throws NoSuchFieldException if any * of the given encoded overlay names are invalid. */ @NonNull @@ -690,7 +690,7 @@ public class PlatformChannel { @NonNull private String encodedName; - /** Returens the encoded {@link SystemUiMode} */ + /** Returns the encoded {@link SystemUiMode} */ SystemUiMode(@NonNull String encodedName) { this.encodedName = encodedName; }