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 b7e56a3 commit 33fc998Copy full SHA for 33fc998
lib/src/impl_ffi/impl_ffi.utils.dart
@@ -489,7 +489,7 @@ int _numBitsToBytes(int numberOfBits) =>
489
(numberOfBits ~/ 8) + ((7 + (numberOfBits % 8)) ~/ 8);
490
491
/// Decode url-safe base64 witout padding as specified in
492
-/// [RFC 7515 Section 2]( https://www.rfc-editor.org/rfc/rfc7515#section-2)
+/// [RFC 7515 Section 2](https://www.rfc-editor.org/rfc/rfc7515#section-2)
493
///
494
/// Throw [FormatException] mentioning JWK property [prop] on failure.
495
Uint8List _jwkDecodeBase64UrlNoPadding(String unpadded, String prop) {
0 commit comments