diff --git a/src/main/java/com/firebase/tubesock/Base64.java b/src/main/java/com/firebase/tubesock/Base64.java index f31befb..a77147d 100644 --- a/src/main/java/com/firebase/tubesock/Base64.java +++ b/src/main/java/com/firebase/tubesock/Base64.java @@ -10,7 +10,7 @@ * * On byte arrays the encoder is about 20% faster than Jakarta Commons Base64 Codec for encode and * about 50% faster for decoding large arrays. This implementation is about twice as fast on very small - * arrays (< 30 bytes). If source/destination is a String this + * arrays (< 30 bytes). If source/destination is a String this * version is about three times as fast due to the fact that the Commons Codec result has to be recoded * to a String from byte[], which is very expensive.

*