diff options
author | Joseph <jngugi88@gmail.com> | 2018-10-24 18:54:34 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-24 08:54:34 -0700 |
commit | d2df67e8221877a14b77d5e185367717afe503f8 (patch) | |
tree | fc621b1dac796bf248093b5a85731d62f055b7ad /js/blob.ts | |
parent | 5fbe6a242c36b3836fe646ab037a03a6c80e32d8 (diff) |
fix typos (#1083)
Diffstat (limited to 'js/blob.ts')
-rw-r--r-- | js/blob.ts | 4 |
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)) { |