[Docs] DeviceOrientation Enum Correction (#152876)

Fixed #151371
This commit is contained in:
Tirth 2024-08-05 22:46:51 +05:30 committed by GitHub
parent a88e321c5b
commit 68983f7084
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ enum DeviceOrientation {
/// clockwise from its boot orientation.
portraitUp,
/// The orientation that is 90 degrees clockwise from [portraitUp].
/// The orientation that is 90 degrees counterclockwise from [portraitUp].
///
/// If the device shows its boot logo in landscape, then the boot logo is
/// shown in [landscapeLeft].
@ -50,7 +50,7 @@ enum DeviceOrientation {
/// The orientation that is 180 degrees from [portraitUp].
portraitDown,
/// The orientation that is 90 degrees counterclockwise from [portraitUp].
/// The orientation that is 90 degrees clockwise from [portraitUp].
landscapeRight,
}