summaryrefslogtreecommitdiff
path: root/js/blob.ts
diff options
context:
space:
mode:
authorJoseph <jngugi88@gmail.com>2018-10-24 18:54:34 +0300
committerRyan Dahl <ry@tinyclouds.org>2018-10-24 08:54:34 -0700
commitd2df67e8221877a14b77d5e185367717afe503f8 (patch)
treefc621b1dac796bf248093b5a85731d62f055b7ad /js/blob.ts
parent5fbe6a242c36b3836fe646ab037a03a6c80e32d8 (diff)
fix typos (#1083)
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)) {