Skip to content

Commit 8d2a9fd

Browse files
committed
Fix a couple of typos in require calls
1 parent 8b630c6 commit 8d2a9fd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

v3/src/utils/array/matrix/Rotate180.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var RotateMatrix = require('./RotateMatrix)';
1+
var RotateMatrix = require('./RotateMatrix');
22

33
var Rotate180 = function (matrix)
44
{

v3/src/utils/array/matrix/RotateLeft.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var RotateMatrix = require('./RotateMatrix)';
1+
var RotateMatrix = require('./RotateMatrix');
22

33
var RotateLeft = function (matrix)
44
{

v3/src/utils/array/matrix/RotateRight.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var RotateMatrix = require('./RotateMatrix)';
1+
var RotateMatrix = require('./RotateMatrix');
22

33
var RotateRight = function (matrix)
44
{

0 commit comments

Comments
 (0)