fixes #543 Horizontal, Vertical should have type Orientation (#544)

This commit is contained in:
Zaim Bakar 2022-08-31 03:08:59 +08:00 committed by GitHub
parent 46afc5218a
commit e5a59254fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ type Orientation int
const (
// Horizontal indicates left to right orientation.
Horizontal = iota
Horizontal Orientation = iota
// Vertical indicates top to bottom orientation.
Vertical