Skip to content

Commit

Permalink
docs(godoc): fix roman numerals example
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbunni committed May 16, 2024
1 parent 7e89bb5 commit 6fb7d0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions list/enumerations.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ func Arabic(_ Data, i int) string {

// Roman is the enumeration for roman numerals listing.
//
// / I. Foo
// / II. Bar
// / III. Baz
// / IV. Qux.
// I. Foo
// II. Bar
// III. Baz
// IV. Qux.
func Roman(_ Data, i int) string {
var (
roman = []string{"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"}
Expand Down

0 comments on commit 6fb7d0f

Please sign in to comment.