Skip to content

Commit 61a597f

Browse files
Fixed mds
1 parent eea089b commit 61a597f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src.primitives/enums/PageFitMode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ primitives.common.PageFitMode = {
2121
*/
2222
PageWidth: 1,
2323
/**
24-
* Fits diagram into the view hight, so it has no vertical scrollbar.
24+
* Fits diagram into the view height, so it has no vertical scrollbar.
2525
*/
2626
PageHeight: 2,
2727
/**

src.tests/Graphics/Structs/Size.Tests.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
QUnit.module('Graphics - Structs - Size');
22

3-
QUnit.test("primitives.common.Size - 2D size structure defined by width and hight", function (assert) {
3+
QUnit.test("primitives.common.Size - 2D size structure defined by width and height", function (assert) {
44

55
var size = new primitives.common.Size(10, 20);
66

77
assert.equal(size.space(), 200, "Square size");
8-
assert.deepEqual(size.getCSS(), {"width": "10px", "height": "20px"}, "Size conversion to width and hight CSS properties");
8+
assert.deepEqual(size.getCSS(), {"width": "10px", "height": "20px"}, "Size conversion to width and height CSS properties");
99

1010
var size1 = new primitives.common.Size(10, 40);
1111
var size2 = new primitives.common.Size(50, 30);

0 commit comments

Comments
 (0)