We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4443189 commit 1a14df1Copy full SHA for 1a14df1
core/edge/src/main/scala/JwtBase64Impl.scala
@@ -10,7 +10,7 @@ trait JwtBase64Impl {
10
11
def decode(value: String): Array[Byte] = decoder.decode(value)
12
13
- // Since the complement character "=" is optinal,
+ // Since the complement character "=" is optional,
14
// we can remove it to save some bits in the HTTP header
15
def encodeString(value: Array[Byte]): String = encoder.encodeToString(value).replaceAll("=", "")
16
0 commit comments