Skip to content

Commit b7e56a3

Browse files
committed
docs: use cannonical rfc links in impl_ffi.utils.dart
1 parent 1c46178 commit b7e56a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/impl_ffi/impl_ffi.utils.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ int _numBitsToBytes(int numberOfBits) =>
489489
(numberOfBits ~/ 8) + ((7 + (numberOfBits % 8)) ~/ 8);
490490

491491
/// Decode url-safe base64 witout padding as specified in
492-
/// [RFC 7515 Section 2](https://tools.ietf.org/html/rfc7515#section-2)
492+
/// [RFC 7515 Section 2]( https://www.rfc-editor.org/rfc/rfc7515#section-2)
493493
///
494494
/// Throw [FormatException] mentioning JWK property [prop] on failure.
495495
Uint8List _jwkDecodeBase64UrlNoPadding(String unpadded, String prop) {
@@ -508,7 +508,7 @@ Uint8List _jwkDecodeBase64UrlNoPadding(String unpadded, String prop) {
508508
}
509509

510510
/// Encode url-safe base64 witout padding as specified in
511-
/// [RFC 7515 Section 2](https://tools.ietf.org/html/rfc7515#section-2)
511+
/// [RFC 7515 Section 2](https://www.rfc-editor.org/rfc/rfc7515#section-2)
512512
String _jwkEncodeBase64UrlNoPadding(List<int> data) {
513513
final padded = base64Url.encode(data);
514514
final i = padded.indexOf('=');

0 commit comments

Comments
 (0)