Commit 2d8dcbd

Josh Soref <2119212+jsoref@users.noreply.github.com>
2024-07-05 11:01:19
Spelling (#867)
* spelling: shell Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: tilde Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --------- Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent d7d074d
Changed files (2)
test/fixtures/markdown.md
@@ -13,7 +13,7 @@ await $`echo ${__dirname}`
 ```
 
 ~~~js
-await $`echo "tilda"`
+await $`echo "tilde"`
 ~~~
 
 ```js
test/util.test.js
@@ -64,7 +64,7 @@ describe('util', () => {
     assert.ok(quote(`'\f\n\r\t\v\0`) === `$'\\'\\f\\n\\r\\t\\v\\0'`)
   })
 
-  test('quotePowerShgell()', () => {
+  test('quotePowerShell()', () => {
     assert.equal(quotePowerShell('string'), 'string')
     assert.equal(quotePowerShell(`'`), `''''`)
   })