Skip to content

Commit d2a4d44

Browse files
authored
Fix typos (#185)
Found via `codespell -S package-lock.json -L ist,als,sie`
1 parent 436cc0a commit d2a4d44

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Align `ol` and `ul` elements to match paragraph indentation.
7575
### 0.2.12
7676

7777
- Fixes indentation of images wrapped in `<p>` tags ([#48](https://github.com/danburzo/percollate/issues/48))
78-
- Adds basic styles for tables ([#50](https://github.com/danburzo/percollate/issues/50)), figures, defition terms, et cetera.
78+
- Adds basic styles for tables ([#50](https://github.com/danburzo/percollate/issues/50)), figures, definition terms, et cetera.
7979
- Adds a better font stack, using CSS variables
8080
- Better CLI feedback with [ora](https://github.com/sindresorhus/ora) (thanks [@emersonlaurentino](https://github.com/emersonlaurentino)!)
8181

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ To keep the tool up-to-date, you can run:
353353
npm install -g percollate
354354
```
355355

356-
Occasionally, an ugrade might not go according to plan; in this case, you can uninstall and re-install `percollate`:
356+
Occasionally, an upgrade might not go according to plan; in this case, you can uninstall and re-install `percollate`:
357357

358358
```bash
359359
npm uninstall -g percollate && npm install -g percollate

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Commands:
8989
html Bundle web pages as a HTML file.
9090
md Bundle web pages as a Markdown file.
9191
92-
Commmon options:
92+
Common options:
9393
9494
-h, --help Output usage information.
9595
-V, --version Output program version.

src/enhancements.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import replaceElementType from './replace-element-type.js';
33
import { isImageURL } from './util/file-mimetype.js';
44

55
/*
6-
Convert AMP markup to HMTL markup
6+
Convert AMP markup to HTML markup
77
(naive / incomplete implementation)
88
*/
99
function ampToHtml(doc) {

test/enhancements.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ tape('imagesAtFullSize', t => {
8787
);
8888

8989
t.test(
90-
'should not unlink linked img elements if the link doesnt point to an image',
90+
'should not unlink linked img elements if the link doesn\'t point to an image',
9191
t => {
9292
const doc = dom`
9393
<a href="/some-random-link">

0 commit comments

Comments
 (0)