summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-03 07:55:52 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-03 07:55:52 -0700
commitc90464ba500536c8cdf5de44b9079dc181bba925 (patch)
tree40488fb4afbaabfd75f2d065d347a9c47118e050 /packages/typescript-types/src
parentd695e4fe129d0bfbeaf34b4ee71de0b07e169921 (diff)
Capitalize “base64url” in existing comments
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 772184f..bcecc64 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -47,7 +47,7 @@ export interface AttestationCredential extends PublicKeyCredential {
/**
* A slightly-modified AttestationCredential to simplify working with ArrayBuffers that
- * are base64url-encoded in the browser so that they can be sent as JSON to the server.
+ * are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
*/
export interface AttestationCredentialJSON
extends Omit<AttestationCredential, 'response' | 'rawId' | 'getClientExtensionResults'> {
@@ -64,7 +64,7 @@ export interface AssertionCredential extends PublicKeyCredential {
/**
* A slightly-modified AssertionCredential to simplify working with ArrayBuffers that
- * are base64url-encoded in the browser so that they can be sent as JSON to the server.
+ * are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
*/
export interface AssertionCredentialJSON
extends Omit<AssertionCredential, 'response' | 'rawId' | 'getClientExtensionResults'> {
@@ -108,6 +108,6 @@ export type AuthenticatorDevice = {
};
/**
- * An attempt to communicate that this isn't just any string, but a base64url-encoded string
+ * An attempt to communicate that this isn't just any string, but a Base64URL-encoded string
*/
export type Base64URLString = string;