summaryrefslogtreecommitdiff
path: root/js/blob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/blob.ts')
-rw-r--r--js/blob.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/blob.ts b/js/blob.ts
index ecd9853ed..b57452dd5 100644
--- a/js/blob.ts
+++ b/js/blob.ts
@@ -20,9 +20,9 @@ export class DenoBlob implements domTypes.Blob {
}
options = options || {};
- // Set ending property's default value to "tranparent".
+ // Set ending property's default value to "transparent".
if (!options.hasOwnProperty("ending")) {
- options.ending = "tranparent";
+ options.ending = "transparent";
}
if (options.type && !containsOnlyASCII(options.type)) {