Skip to content

Commit 9b86c08

Browse files
committed
Refactor uncommon word use
1 parent d253029 commit 9b86c08

File tree

4 files changed

+6
-19
lines changed

4 files changed

+6
-19
lines changed

dictionary.txt

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
11
// Jargon
2-
API
32
CLI
43
XSS
54
attacher
65
bundler
7-
debounced
86
esbuild
9-
hacky
10-
linter
11-
math
12-
middleware
137
minified
148
minify
159
minifying
1610
performant
17-
pluggable
11+
plugable
1812
programmatically
1913
readme
20-
stdin
21-
stdout
22-
stringifier
2314
stringify
2415
syntaxes
2516
whitespace
@@ -29,25 +20,20 @@ BundlePhobia
2920
CDN
3021
CommonMark
3122
DOM
32-
Deno
3323
GFM
3424
HSL
3525
JSDoc
3626
JSON
3727
JSX
3828
MDX
3929
MacBook
40-
Node.js
4130
Otander
4231
Preact
43-
hast
4432
mdast
4533
nlcst
4634
npm
4735
rehype
48-
remark
4936
retext
50-
unified
5137
unist
5238
vfile
5339
xast

doc/learn/find-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ await remark()
8888

8989
Read more about [`unist-util-find`][unist-util-find] in its readme.
9090

91-
`unist-util-find` is rather basic and slow.
91+
The package `unist-util-find` is rather basic and slow.
9292
You likely want to [traverse a tree][tree-traversal]
9393
with [`unist-util-visit`][unist-util-visit]
9494

doc/learn/introduction-to-unified.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Together with other tools and specifications they form the unified collective.
5656

5757
The unified collective spans like-minded organizations.
5858
These organizations have the shared goal to innovate content processing.
59-
Seamless, interchangeable, and pluggable tooling is how that’s achieved.
59+
Seamless, interchangeable, and plugable tooling is how that’s achieved.
6060

6161
Depending on what you want to do you reference different organizations.
6262
So let’s start off with an introduction round.

doc/learn/using-unified.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ prose.
3535

3636
### Tree transformations
3737

38-
For this example we start out with markdown content and then transform to HTML.
39-
We need a markdown parser and an HTML stringifier (compiler) for that.
38+
For this example we start out with markdown content and then turn it into HTML.
39+
We need something to parse markdown and something to compile (stringify) HTML
40+
for that.
4041
The relevant projects are respectively [`remark-parse`][parse] and
4142
[`rehype-stringify`][stringify].
4243
To transform between the two syntaxes we use [`remark-rehype`][remark-rehype].

0 commit comments

Comments
 (0)