Skip to content

Commit 6cd2cb4

Browse files
committed
docs: fix spelling mistakes
1 parent 942a235 commit 6cd2cb4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/Tutorials/Applying transform function on images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const mirrorMatrix = [
9393
[-1, 0, 0],
9494
[0, 1, 0],
9595
];
96-
const mirrorredImage = image.transform(mirrorMatrix);
96+
const mirroredImage = image.transform(mirrorMatrix);
9797
```
9898

9999
![Mirrored image](./images/transformations/lennaMirrorred.png)
@@ -176,7 +176,7 @@ const verticalShearMatrix = [
176176
[0.3, 1, 0], // d=0.3 creates vertical shear
177177
];
178178

179-
const verticalShearImage = image.transform(vertcialShearMatrix);
179+
const verticalShearImage = image.transform(verticalShearMatrix);
180180
```
181181

182182
![Vertically sheared image](./images/transformations/lennaVerticalShear.png)

project-words.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ exif
2929
electrometric
3030
Grayscaling
3131
Avgs
32-
32+
Collinearity

0 commit comments

Comments
 (0)