aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/CONTRIBUTING.md2
-rw-r--r--bench/tests/10000-accesses.js4
-rw-r--r--playgrounds/transforms/transforms.js2
-rw-r--r--spec/RAFPlugin.js2
-rw-r--r--spec/spec/animation/Controller.js2
-rw-r--r--spec/spec/animation/Runner.js8
-rw-r--r--spec/spec/animation/Timeline.js18
-rw-r--r--spec/spec/elements/Dom.js4
-rw-r--r--spec/spec/elements/Marker.js2
-rw-r--r--spec/spec/elements/Mask.js2
-rw-r--r--spec/spec/elements/Tspan.js2
-rw-r--r--spec/spec/modules/core/containerGeometry.js4
-rw-r--r--spec/spec/modules/core/event.js8
-rw-r--r--spec/spec/modules/optional/css.js2
-rw-r--r--spec/spec/modules/optional/data.js2
-rw-r--r--spec/spec/modules/optional/sugar.js2
-rw-r--r--spec/spec/types/EventTarget.js2
-rw-r--r--spec/spec/types/List.js2
-rw-r--r--spec/spec/types/Matrix.js2
-rw-r--r--spec/spec/types/SVGArray.js4
-rw-r--r--spec/spec/utils/utils.js2
-rw-r--r--src/animation/Runner.js2
-rw-r--r--src/animation/Timeline.js4
-rw-r--r--src/elements/Dom.js2
-rw-r--r--src/elements/Pattern.js2
-rw-r--r--src/modules/optional/arrange.js2
-rw-r--r--src/types/Box.js4
-rw-r--r--src/types/SVGNumber.js2
-rw-r--r--src/utils/utils.js2
29 files changed, 49 insertions, 49 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 6536a0e..fe6d431 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -6,7 +6,7 @@ When contributing to this repository, please first discuss the change you wish t
## Pull Request Process
-When you want to make contriubtions to the project, the process is pretty simple:
+When you want to make contributions to the project, the process is pretty simple:
1. Discuss in an issue or on gitter what you'd like to change
2. Fork the repository to make your own local copy
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
diff --git a/playgrounds/transforms/transforms.js b/playgrounds/transforms/transforms.js
index 7b9722c..e9c0376 100644
--- a/playgrounds/transforms/transforms.js
+++ b/playgrounds/transforms/transforms.js
@@ -2,7 +2,7 @@
let canvas = SVG('#canvas')
-// Make the green rectange
+// Make the green rectangle
canvas.rect(200, 400).move(200, 400)
.attr('opacity', 0.3)
.addClass('green')
diff --git a/spec/RAFPlugin.js b/spec/RAFPlugin.js
index 61eed46..770212c 100644
--- a/spec/RAFPlugin.js
+++ b/spec/RAFPlugin.js
@@ -1,6 +1,6 @@
/* globals jasmine */
/**
- * Jasmine RequestAnimationFrame: a set of helpers for testing funcionality
+ * Jasmine RequestAnimationFrame: a set of helpers for testing functionality
* that uses requestAnimationFrame under the Jasmine BDD framework for JavaScript.
*/
function RAFPlugin (jasmine) {
diff --git a/spec/spec/animation/Controller.js b/spec/spec/animation/Controller.js
index b1d4b8f..2545235 100644
--- a/spec/spec/animation/Controller.js
+++ b/spec/spec/animation/Controller.js
@@ -384,7 +384,7 @@ describe('Controller.js', () => {
expect(pid.done(context)).toBe(true)
})
- it('caculates a new value', () => {
+ it('calculates a new value', () => {
const pid = new PID()
expect(pid.step(0, 100, 16, {})).toBe(20)
})
diff --git a/spec/spec/animation/Runner.js b/spec/spec/animation/Runner.js
index b22bdcc..b9a6342 100644
--- a/spec/spec/animation/Runner.js
+++ b/spec/spec/animation/Runner.js
@@ -886,7 +886,7 @@ describe('Runner.js', () => {
describe('private Methods', () => {
describe('_rememberMorpher()', () => {
- it('adds a morper for a method to the runner', () => {
+ it('adds a morpher for a method to the runner', () => {
const runner = new Runner()
const morpher = new Morphable()
runner._rememberMorpher('move', morpher)
@@ -1078,7 +1078,7 @@ describe('Runner.js', () => {
})
describe('_addRunner()', () => {
- it('adds a runenr to the runner array of this element', () => {
+ it('adds a runner to the runner array of this element', () => {
const rect = new Rect()
rect._prepareRunner()
const spy = spyOn(rect._transformationRunners, 'add')
@@ -1569,7 +1569,7 @@ describe('Runner.js', () => {
expect(element.x()).toBe(15)
})
- it('retargets corectly', () => {
+ it('retargets correctly', () => {
const element = new Rect().x(10)
const runner = new Runner(100).ease('-').element(element)
runner._queueNumberDelta('x', 10)
@@ -1606,7 +1606,7 @@ describe('Runner.js', () => {
expect(element.fill()).toBe('#808080')
})
- it('retargets corectly', () => {
+ it('retargets correctly', () => {
const element = new Rect().x(10)
const runner = new Runner(100).ease('-').element(element)
runner._queueObject('x', 20)
diff --git a/spec/spec/animation/Timeline.js b/spec/spec/animation/Timeline.js
index f23e620..8cdf43f 100644
--- a/spec/spec/animation/Timeline.js
+++ b/spec/spec/animation/Timeline.js
@@ -385,7 +385,7 @@ describe('Timeline.js', () => {
it('does a step in the timeline and runs all runners', () => {
const timeline = new Timeline()
const runner = new Runner(1000)
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(16)
expect(runner.time()).toBe(16)
})
@@ -393,7 +393,7 @@ describe('Timeline.js', () => {
it('doenst run runners which start later', () => {
const timeline = new Timeline()
const runner = new Runner(1000)
- timeline.schedule(runner, 100).play() // we have to play because its syncronous here
+ timeline.schedule(runner, 100).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(16)
expect(runner.time()).toBe(0)
})
@@ -412,7 +412,7 @@ describe('Timeline.js', () => {
it('doesnt run runners if they are not active', () => {
const timeline = new Timeline()
const runner = new Runner(1000).active(false)
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(16)
expect(runner.time()).toBe(0)
})
@@ -420,7 +420,7 @@ describe('Timeline.js', () => {
it('unschedules runner if its finished', () => {
const timeline = new Timeline()
const runner = new Runner(1000)
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1000)
jasmine.RequestAnimationFrame.tick(1)
expect(runner.time()).toBe(1001)
@@ -430,7 +430,7 @@ describe('Timeline.js', () => {
it('does not unschedule if runner is persistent forever', () => {
const timeline = new Timeline()
const runner = new Runner(1000).persist(true)
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1000)
jasmine.RequestAnimationFrame.tick(1)
expect(runner.time()).toBe(1001)
@@ -440,7 +440,7 @@ describe('Timeline.js', () => {
it('does not unschedule if runner is persistent for a certain time', () => {
const timeline = new Timeline()
const runner = new Runner(1000).persist(100)
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1000)
jasmine.RequestAnimationFrame.tick(1)
expect(runner.time()).toBe(1001)
@@ -452,7 +452,7 @@ describe('Timeline.js', () => {
const timeline = new Timeline().on('finished', spy)
const runner = new Runner(1000)
spy.calls.reset()
- timeline.schedule(runner).play() // we have to play because its syncronous here
+ timeline.schedule(runner).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1000)
jasmine.RequestAnimationFrame.tick(1)
expect(spy).toHaveBeenCalled()
@@ -463,7 +463,7 @@ describe('Timeline.js', () => {
const timeline = new Timeline().on('finished', spy).time(1200).reverse(true)
const runner = new Runner(1000)
spy.calls.reset()
- timeline.schedule(runner, 0).play() // we have to play because its syncronous here
+ timeline.schedule(runner, 0).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1)
expect(spy).not.toHaveBeenCalled()
})
@@ -473,7 +473,7 @@ describe('Timeline.js', () => {
const timeline = new Timeline().on('finished', spy).reverse(true)
const runner = new Runner(1000)
spy.calls.reset()
- timeline.schedule(runner, 0).play() // we have to play because its syncronous here
+ timeline.schedule(runner, 0).play() // we have to play because its synchronous here
jasmine.RequestAnimationFrame.tick(1)
expect(spy).toHaveBeenCalled()
})
diff --git a/spec/spec/elements/Dom.js b/spec/spec/elements/Dom.js
index deb665a..f4864b3 100644
--- a/spec/spec/elements/Dom.js
+++ b/spec/spec/elements/Dom.js
@@ -89,7 +89,7 @@ describe('Dom.js', function () {
expect(rect.addTo(g)).toBe(rect)
})
- it('puts an element innto another element', () => {
+ it('puts an element into another element', () => {
const g = new G()
const rect = new Rect()
const spy = spyOn(g, 'put')
@@ -531,7 +531,7 @@ describe('Dom.js', function () {
expect(rect.round(1).attr()).toEqual({ id: 'foo', x: 10.7, y: 3, width: 123.5 })
})
- it('rounds the given attribues whose values are numbers to the passed precision', () => {
+ it('rounds the given attributes whose values are numbers to the passed precision', () => {
const rect = new Rect({ id: 'foo', x: 10.678, y: 3, width: 123.456 })
expect(rect.round(1, [ 'id', 'x' ]).attr()).toEqual({ id: 'foo', x: 10.7, y: 3, width: 123.456 })
})
diff --git a/spec/spec/elements/Marker.js b/spec/spec/elements/Marker.js
index d2726a9..63e06fe 100644
--- a/spec/spec/elements/Marker.js
+++ b/spec/spec/elements/Marker.js
@@ -38,7 +38,7 @@ describe('Marker.js', function () {
})
describe('ref()', () => {
- it('sets refX and refY attriute', () => {
+ it('sets refX and refY attribute', () => {
const marker = new Marker().ref(10, 20)
expect(marker.attr('refX')).toBe(10)
expect(marker.attr('refY')).toBe(20)
diff --git a/spec/spec/elements/Mask.js b/spec/spec/elements/Mask.js
index b9c97f3..913108a 100644
--- a/spec/spec/elements/Mask.js
+++ b/spec/spec/elements/Mask.js
@@ -55,7 +55,7 @@ describe('Mask.js', () => {
describe('Element', () => {
describe('masker()', () => {
- it('returns the instance of Mask the current element is maskped with', () => {
+ it('returns the instance of Mask the current element is masked with', () => {
const canvas = SVG().addTo(container)
const mask = canvas.mask()
const rect = canvas.rect(100, 100).maskWith(mask)
diff --git a/spec/spec/elements/Tspan.js b/spec/spec/elements/Tspan.js
index a2e6620..d6f42b2 100644
--- a/spec/spec/elements/Tspan.js
+++ b/spec/spec/elements/Tspan.js
@@ -125,7 +125,7 @@ describe('Tspan.js', () => {
describe('Text', () => {
describe('newLine()', () => {
- it('creates a tspan and calles newLine() on it', () => {
+ it('creates a tspan and calls newLine() on it', () => {
const text = new Text()
const tspan = text.newLine()
expect(tspan).toEqual(any(Tspan))
diff --git a/spec/spec/modules/core/containerGeometry.js b/spec/spec/modules/core/containerGeometry.js
index 3bdb109..7bbd2c9 100644
--- a/spec/spec/modules/core/containerGeometry.js
+++ b/spec/spec/modules/core/containerGeometry.js
@@ -101,7 +101,7 @@ describe('containerGeometry.js', () => {
expect(g.x()).toBe(g.bbox().x)
expect(g.x()).toBe(10)
})
- it('calls move with the paramater as x', () => {
+ it('calls move with the parameter as x', () => {
const canvas = SVG().addTo(container)
const g = canvas.group()
g.rect(100, 200).move(111, 223)
@@ -127,7 +127,7 @@ describe('containerGeometry.js', () => {
expect(g.y()).toBe(20)
})
- it('calls move with the paramater as y', () => {
+ it('calls move with the parameter as y', () => {
const canvas = SVG().addTo(container)
const g = canvas.group()
g.rect(100, 200).move(111, 223)
diff --git a/spec/spec/modules/core/event.js b/spec/spec/modules/core/event.js
index f93f661..44c0a0b 100644
--- a/spec/spec/modules/core/event.js
+++ b/spec/spec/modules/core/event.js
@@ -55,7 +55,7 @@ describe('event.js', () => {
expect(spy).toHaveBeenCalledWith(any(getWindow().CustomEvent))
})
- it('binds to multiple events with space or comma seperated string', () => {
+ it('binds to multiple events with space or comma separated string', () => {
const eventTarget = new EventTarget()
const spy = createSpy('spy')
on(eventTarget, 'event1 event2, event3', spy)
@@ -95,7 +95,7 @@ describe('event.js', () => {
expect(spy).toHaveBeenCalledTimes(1)
})
- it('unbinds multiple events with space or comma seperated string', () => {
+ it('unbinds multiple events with space or comma separated string', () => {
const eventTarget = new EventTarget()
const spy = createSpy('spy')
on(eventTarget, 'event1 event2, event3', spy)
@@ -109,7 +109,7 @@ describe('event.js', () => {
expect(spy).toHaveBeenCalledTimes(3)
})
- it('unbinds multiple events with space or comma seperated string', () => {
+ it('unbinds multiple events with space or comma separated string', () => {
const eventTarget = new EventTarget()
const spy = createSpy('spy')
on(eventTarget, [ 'event1', 'event2', 'event3' ], spy)
@@ -133,7 +133,7 @@ describe('event.js', () => {
expect(spy).toHaveBeenCalledTimes(1)
})
- it('unbinds all events incuding namespaced ones when only event is passed', () => {
+ it('unbinds all events including namespaced ones when only event is passed', () => {
const eventTarget = new EventTarget()
const spy = createSpy('spy')
on(eventTarget, [ 'event1.ns1', 'event2.ns2', 'event3' ], spy)
diff --git a/spec/spec/modules/optional/css.js b/spec/spec/modules/optional/css.js
index 1a20fe6..b6c04bc 100644
--- a/spec/spec/modules/optional/css.js
+++ b/spec/spec/modules/optional/css.js
@@ -15,7 +15,7 @@ describe('css.js', () => {
})
})
- it('returns an object with selected css properries', () => {
+ it('returns an object with selected css properties', () => {
const rect = new Rect({ style: 'fill: none; outline-width: 1px; stroke: none' })
expect(rect.css([ 'fill', 'stroke' ])).toEqual({
fill: 'none',
diff --git a/spec/spec/modules/optional/data.js b/spec/spec/modules/optional/data.js
index 786eaee..bdb1ca5 100644
--- a/spec/spec/modules/optional/data.js
+++ b/spec/spec/modules/optional/data.js
@@ -15,7 +15,7 @@ describe('data.js', () => {
})
})
- it('returns an object with selected data properries', () => {
+ it('returns an object with selected data properties', () => {
const rect = new Rect({ 'data-fill': 'none', 'data-outline-width': '1px', 'data-stroke': 'none' })
expect(rect.data([ 'fill', 'stroke' ])).toEqual({
fill: 'none',
diff --git a/spec/spec/modules/optional/sugar.js b/spec/spec/modules/optional/sugar.js
index f762ed0..84c95b0 100644
--- a/spec/spec/modules/optional/sugar.js
+++ b/spec/spec/modules/optional/sugar.js
@@ -268,7 +268,7 @@ describe('sugar.js', () => {
expect(spy).toHaveBeenCalledWith({ flip: 'both', origin: 'center' }, true)
})
- // this works because only x and y are valid flip values. Evereything else flips on both axis
+ // this works because only x and y are valid flip values. Everything else flips on both axis
it('sets flip to both and origin to number when called with origin only', function () {
const rect = new Rect()
const spy = spyOn(rect, 'transform')
diff --git a/spec/spec/types/EventTarget.js b/spec/spec/types/EventTarget.js
index 912924a..e27a71c 100644
--- a/spec/spec/types/EventTarget.js
+++ b/spec/spec/types/EventTarget.js
@@ -26,7 +26,7 @@ describe('EventTarget.js', () => {
})
describe('dispatch()', () => {
- it('evemtually calls dispatchEvent on the target and returns the event', () => {
+ it('eventually calls dispatchEvent on the target and returns the event', () => {
const target = new EventTarget()
const spy = spyOn(target, 'dispatchEvent').and.callThrough()
const options = { cancelable: false }
diff --git a/spec/spec/types/List.js b/spec/spec/types/List.js
index 9ebaae4..eb0b40b 100644
--- a/spec/spec/types/List.js
+++ b/spec/spec/types/List.js
@@ -43,7 +43,7 @@ describe('List.js', () => {
}))
})
- it('calls a method on every element in the list and passes aguments when a string is passed', () => {
+ it('calls a method on every element in the list and passes arguments when a string is passed', () => {
const list = new List([ 10, 11, 12 ])
expect(list.each('toString', 16)).toEqual([ 'a', 'b', 'c' ])
})
diff --git a/spec/spec/types/Matrix.js b/spec/spec/types/Matrix.js
index 0ef5273..bddf6fd 100644
--- a/spec/spec/types/Matrix.js
+++ b/spec/spec/types/Matrix.js
@@ -148,7 +148,7 @@ describe('Matrix.js', () => {
}
})
- it('throws if matrix is not inversable', () => {
+ it('throws if matrix is not invertible', () => {
const matrix = new Matrix(0, 0, 0, 0, 0, 0)
expect(() => matrix.inverse()).toThrowError('Cannot invert matrix(0,0,0,0,0,0)')
})
diff --git a/spec/spec/types/SVGArray.js b/spec/spec/types/SVGArray.js
index cefc54e..dc58a89 100644
--- a/spec/spec/types/SVGArray.js
+++ b/spec/spec/types/SVGArray.js
@@ -23,11 +23,11 @@ describe('SVGArray.js', () => {
expect(array + '').toBe('0.343 0.669 0.119 0 0 0.249 -0.626 0.13 0 0 0.172 0.334 0.111 0 0 0 0 0 1 0')
})
- it('parses space seperated string and converts it to array', () => {
+ it('parses space separated string and converts it to array', () => {
expect((new SVGArray('1 2 3 4')).valueOf()).toEqual([ 1, 2, 3, 4 ])
})
- it('parses comma seperated string and converts it to array', () => {
+ it('parses comma separated string and converts it to array', () => {
expect((new SVGArray('1,2,3,4')).valueOf()).toEqual([ 1, 2, 3, 4 ])
})
diff --git a/spec/spec/utils/utils.js b/spec/spec/utils/utils.js
index 5606222..5a2ae97 100644
--- a/spec/spec/utils/utils.js
+++ b/spec/spec/utils/utils.js
@@ -70,7 +70,7 @@ describe('utils.js', function () {
})
describe('degrees()', function () {
- it('converts radians to degreens', function () {
+ it('converts radians to degrees', function () {
expect(degrees(1.5 * Math.PI)).toBe(270)
expect(degrees(Math.PI / 2)).toBe(90)
})
diff --git a/src/animation/Runner.js b/src/animation/Runner.js
index bd60915..faeeed6 100644
--- a/src/animation/Runner.js
+++ b/src/animation/Runner.js
@@ -422,7 +422,7 @@ export default class Runner extends EventTarget {
}
// We have to resume the timeline in case a controller
- // is already done without beeing ever run
+ // is already done without being ever run
// This can happen when e.g. this is done:
// anim = el.animate(new SVG.Spring)
// and later
diff --git a/src/animation/Timeline.js b/src/animation/Timeline.js
index a29d683..25e6554 100644
--- a/src/animation/Timeline.js
+++ b/src/animation/Timeline.js
@@ -108,7 +108,7 @@ export default class Timeline extends EventTarget {
// The start time for the next animation can either be given explicitly,
// derived from the current timeline time or it can be relative to the
- // last start time to chain animations direclty
+ // last start time to chain animations directly
var absoluteStartTime = 0
var endTime = this.getEndTime()
@@ -244,7 +244,7 @@ export default class Timeline extends EventTarget {
// FIXME:
// However, reseting in insertion order leads to bugs. Considering the case,
- // where 2 runners change the same attriute but in different times,
+ // where 2 runners change the same attribute but in different times,
// reseting both of them will lead to the case where the later defined
// runner always wins the reset even if the other runner started earlier
// and therefore should win the attribute battle
diff --git a/src/elements/Dom.js b/src/elements/Dom.js
index 7c36078..c874353 100644
--- a/src/elements/Dom.js
+++ b/src/elements/Dom.js
@@ -129,7 +129,7 @@ export default class Dom extends EventTarget {
this.node.id = eid(this.type)
}
- // dont't set directly with this.node.id to make `null` work correctly
+ // don't set directly with this.node.id to make `null` work correctly
return this.attr('id', id)
}
diff --git a/src/elements/Pattern.js b/src/elements/Pattern.js
index be03423..61adace 100644
--- a/src/elements/Pattern.js
+++ b/src/elements/Pattern.js
@@ -24,7 +24,7 @@ export default class Pattern extends Container {
return baseFind('svg [fill*="' + this.id() + '"]')
}
- // Alias string convertion to fill
+ // Alias string conversion to fill
toString () {
return this.url()
}
diff --git a/src/modules/optional/arrange.js b/src/modules/optional/arrange.js
index b6c03e0..30151c1 100644
--- a/src/modules/optional/arrange.js
+++ b/src/modules/optional/arrange.js
@@ -6,7 +6,7 @@ export function siblings () {
return this.parent().children()
}
-// Get the curent position siblings
+// Get the current position siblings
export function position () {
return this.parent().index(this)
}
diff --git a/src/types/Box.js b/src/types/Box.js
index 9707b7f..71d1e2a 100644
--- a/src/types/Box.js
+++ b/src/types/Box.js
@@ -159,7 +159,7 @@ export function bbox () {
export function rbox (el) {
const getRBox = (node) => node.getBoundingClientRect()
const retry = (el) => {
- // There is no point in trying tricks here because if we insert the element into the dom ourselfes
+ // There is no point in trying tricks here because if we insert the element into the dom ourselves
// it obviously will be at the wrong position
throw new Error(`Getting rbox of element "${el.node.nodeName}" is not possible`)
}
@@ -200,7 +200,7 @@ registerMethods({
zoom (level, point) {
// Its best to rely on the attributes here and here is why:
// clientXYZ: Doesn't work on non-root svgs because they dont have a CSSBox (silly!)
- // getBoundingClinetRect: Doesn't work because Chrome just ignores width and height of nested svgs completely
+ // getBoundingClientRect: Doesn't work because Chrome just ignores width and height of nested svgs completely
// that means, their clientRect is always as big as the content.
// Furthermore this size is incorrect if the element is further transformed by its parents
// computedStyle: Only returns meaningful values if css was used with px. We dont go this route here!
diff --git a/src/types/SVGNumber.js b/src/types/SVGNumber.js
index 914919e..f9bee28 100644
--- a/src/types/SVGNumber.js
+++ b/src/types/SVGNumber.js
@@ -1,6 +1,6 @@
import { numberAndUnit } from '../modules/core/regex.js'
-// Module for unit convertions
+// Module for unit conversions
export default class SVGNumber {
// Initialize
constructor (...args) {
diff --git a/src/utils/utils.js b/src/utils/utils.js
index ee47079..927f044 100644
--- a/src/utils/utils.js
+++ b/src/utils/utils.js
@@ -43,7 +43,7 @@ export function camelCase (s) {
})
}
-// Convert camel cased string to dash seperated
+// Convert camel cased string to dash separated
export function unCamelCase (s) {
return s.replace(/([A-Z])/g, function (m, g) {
return '-' + g.toLowerCase()