Skip to content

Commit bea7bf9

Browse files
authored
docs(encoding): fix links in calcSize function docs (#6557)
1 parent 5575e3f commit bea7bf9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

encoding/_common16.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ new TextEncoder()
1212

1313
/**
1414
* Calculate the output size needed to encode a given input size for
15-
* {@linkcode encodeRawHex}.
15+
* {@linkcode encodeIntoHex}.
1616
*
1717
* @param originalSize The size of the input buffer.
1818
* @returns The size of the output buffer.

encoding/_common32.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export type Base32Format = "Base32" | "Base32Hex" | "Base32Crockford";
2828

2929
/**
3030
* Calculate the output size needed to encode a given input size for
31-
* {@linkcode encodeRawBase32}.
31+
* {@linkcode encodeIntoBase32}.
3232
*
3333
* @param rawSize The size of the input buffer.
3434
* @returns The size of the output buffer.

encoding/_common64.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type Base64Format = "Base64" | "Base64Url";
2626

2727
/**
2828
* Calculate the output size needed to encode a given input size for
29-
* {@linkcode encodeRawBase64}.
29+
* {@linkcode encodeIntoBase64}.
3030
*
3131
* @param originalSize The size of the input buffer.
3232
* @returns The size of the output buffer.

0 commit comments

Comments
 (0)