summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2023-02-10 15:24:45 +0000
committerBasil L. Contovounesios <contovob@tcd.ie>2023-02-10 15:24:45 +0000
commit10af9fbcad107ae76f50d408e0d6d04e082cc6d8 (patch)
treeefded13c8c290b9c7a59632aa0643fd3441d682d /admin
parent9ac242ce93d7c4fbc34b556f4fa0d2ac2ebac604 (diff)
downloademacs-10af9fbcad107ae76f50d408e0d6d04e082cc6d8.tar.gz
; * admin/notes/tree-sitter/starter-guide: Typos.
Reported by Romanos Skiadas <rom.skiad@gmail.com>.
Diffstat (limited to 'admin')
-rw-r--r--admin/notes/tree-sitter/starter-guide4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/notes/tree-sitter/starter-guide b/admin/notes/tree-sitter/starter-guide
index 606f7891dfa..b8910aab5ca 100644
--- a/admin/notes/tree-sitter/starter-guide
+++ b/admin/notes/tree-sitter/starter-guide
@@ -45,7 +45,7 @@ You can use this script that I put together here:
You can also find them under this directory in /build-modules.
This script automatically pulls and builds language definitions for C,
-C++, Rust, JSON, Go, HTML, Javascript, CSS, Python, Typescript,
+C++, Rust, JSON, Go, HTML, JavaScript, CSS, Python, Typescript,
and C#. Better yet, I pre-built these language definitions for
GNU/Linux and macOS, they can be downloaded here:
@@ -271,7 +271,7 @@ Matchers and anchors are functions that takes (NODE PARENT BOL &rest
_). Matches return nil/non-nil for no match/match, and anchors return
the anchor point. Below are some convenient builtin matchers and anchors.
-For MATHCER we have
+For MATCHER we have
(parent-is TYPE) => matches if PARENT’s type matches TYPE as regexp
(node-is TYPE) => matches NODE’s type