summaryrefslogtreecommitdiffstats
path: root/bench
diff options
context:
space:
mode:
authorordago <ordago@users.noreply.github.com>2020-12-17 05:43:50 +0000
committerGitHub <noreply@github.com>2020-12-17 15:43:50 +1000
commit4f4dc2afa62cb899a5cae72c359150f8adf27edb (patch)
tree617ed30d3c2aff6182216f24054a7b0d3c229ede /bench
parentc01bead5556cedea7dff8d4965bd70070b018c6f (diff)
downloadsvg.js-4f4dc2afa62cb899a5cae72c359150f8adf27edb.tar.gz
svg.js-4f4dc2afa62cb899a5cae72c359150f8adf27edb.zip
typos (#1179)
* typos in 1000-accesses.js * typos in transforms.js * typos in Controller.js * typos in Runner.js * typos in Timeline.js * typos in Dom.js * typos in Marker.js * typos in Mask.js * typos in Tspan.js * typos in containerGeometry.js * typos in event.js * typos in css.js * typos in data.js * typos in sugar.js * typos in EventTarget.js * typos in List.js * typos in Matrix.js * typos in SVGArray.js * typos in utils.js * typos in RAFPlugin.js * typos in Runner.js * typos in Timeline.js * typos in Dom.js * typos in Pattern.js * typos in arrange.js * typos in Box.js * typos in SVGNumber.js * typos in utils.js * typos in CONTRIBUTING.md
Diffstat (limited to 'bench')
-rw-r--r--bench/tests/10000-accesses.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/tests/10000-accesses.js b/bench/tests/10000-accesses.js
index 4c7dfea..867dfaa 100644
--- a/bench/tests/10000-accesses.js
+++ b/bench/tests/10000-accesses.js
@@ -1,5 +1,5 @@
-SVG.bench.describe('Access a dom attribues vs dom properties vs object properties', function(bench) {
+SVG.bench.describe('Access a dom attributes vs dom properties vs object properties', function(bench) {
bench.test('using an object', function() {
var sum = 0
var obj = {x: "30"}
@@ -13,7 +13,7 @@ SVG.bench.describe('Access a dom attribues vs dom properties vs object propertie
var obj = bench.draw.rect(100, 100).move(0, 0)
})
- bench.test('using dom attriutes', function () {
+ bench.test('using dom attributes', function () {
var sum = 0
var obj = bench.draw.rect(100, 100).move(0, 0)
var node = obj.node