Browse Source

style: clean up text in panic in superscript

Benton Edmondson 1 year ago
parent
commit
76bb296242
1 changed files with 1 additions and 1 deletions
  1. 1 1
      style/style.go

+ 1 - 1
style/style.go

@@ -95,7 +95,7 @@ func superscript(value int) string {
 		case '8': return '\u2078'
 		case '9': return '\u2079'
 		default:
-			panic("cannot superscript non-digit")
+			panic("can't superscript non-digit")
 		}
 	}, text)
 }