Skip to content

Commit 1a14df1

Browse files
authored
fix typo
1 parent 4443189 commit 1a14df1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/edge/src/main/scala/JwtBase64Impl.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trait JwtBase64Impl {
1010

1111
def decode(value: String): Array[Byte] = decoder.decode(value)
1212

13-
// Since the complement character "=" is optinal,
13+
// Since the complement character "=" is optional,
1414
// we can remove it to save some bits in the HTTP header
1515
def encodeString(value: Array[Byte]): String = encoder.encodeToString(value).replaceAll("=", "")
1616

0 commit comments

Comments
 (0)