Skip to content

Commit cf6e0f4

Browse files
authored
Merge pull request #37 from tarsiiformes/typos
Fix typos
2 parents c154d43 + 5c576b1 commit cf6e0f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ If you want to hack on the high-level features (in Lisp) only:
143143
- Make changes to the `.el` files.
144144
- Add tests to `tree-sitter-tests.el` and run them with `./bin/test` (`.\bin\test` on Windows).
145145
146-
If you want to build addtional (or all) grammars from source, or work on the core dynamic module, see the next 2 sections.
146+
If you want to build additional (or all) grammars from source, or work on the core dynamic module, see the next 2 sections.
147147
148148
### Building grammars from source
149149

lisp/tree-sitter-core.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ If NODE is the root node, the sequence is empty."
228228

229229
(defun ts--node-from-steps (tree steps)
230230
"Follow STEPS from TREE's root node; return the final node.
231-
STEPS shoud be a sequence of steps, as described by `ts--node-steps'.
231+
STEPS should be a sequence of steps, as described by `ts--node-steps'.
232232
233233
If a step cannot be followed, signal a `ts--invalid-node-step' error."
234234
(let ((this (ts-root-node tree)))

lisp/tree-sitter-tests.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
;; (message "reparse %s" reparse)
121121
(ert-info ("Same code should result in empty change ranges")
122122
(should (equal [] (ts-changed-ranges old-tree tree))))
123-
(ert-info ("Incremental parsing shoud be faster than initial")
123+
(ert-info ("Incremental parsing should be faster than initial")
124124
(should (> (car initial) (car reparse))))))))
125125

126126
(ert-deftest minor-mode::basic-editing ()

0 commit comments

Comments
 (0)