Skip to content

Commit 3ebd9cd

Browse files
committed
fix: add a space before 9 to align characters
1 parent 448f092 commit 3ebd9cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/data/examples/en/05_Image/07_EdgeDetection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// kernel is the 3x3 matrix of normalized values
1515
let kernel = [
1616
[-1, -1, -1],
17-
[-1, 9, -1],
17+
[-1, 9, -1],
1818
[-1, -1, -1]
1919
];
2020

src/data/examples/en/05_Image/09_Convolution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let w = 80;
1515
// filter; it accentuates the edges.
1616
const matrix = [
1717
[-1, -1, -1],
18-
[-1, 9, -1],
18+
[-1, 9, -1],
1919
[-1, -1, -1]
2020
];
2121

0 commit comments

Comments
 (0)