Skip to content

Commit 493f84a

Browse files
authored
Fix docs typo (#641)
* fix: typo in blog context section * fix: link to who 'my' is
1 parent 34c823f commit 493f84a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/blog/optimize-ast-grep.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ In this case, I did not pay enough attention to runtime details or opted for nai
2727

2828
# Context
2929

30-
[ast-grep](https://ast-grep.github.io/) is my hobby project to help you search and rewrite code using [abstract syntax tree](https://www.wikiwand.com/en/Abstract_syntax_tree).
30+
[ast-grep](https://ast-grep.github.io/) is [my](https://github.com/HerringtonDarkholme) hobby project to help you search and rewrite code using [abstract syntax tree](https://www.wikiwand.com/en/Abstract_syntax_tree).
3131

3232
Conceptually, ast-grep takes a piece of pattern code (think it like a regular expression but for AST), matches the pattern against your codebase and gives a list of matched AST nodes back to you. See the [playground](https://ast-grep.github.io/playground) for a live demo.
3333

34-
I designed ast-grpe's architecture with performance in mind. Here are a few performance related highlights:
34+
I designed ast-grep's architecture with performance in mind. Here are a few performance related highlights:
3535

3636
* it is written in Rust, a native language compiled to machine code.
3737
* it uses the venerable C library [tree-sitter](https://tree-sitter.github.io/) to parse code, which is the same library powering [GitHub's codesearch](https://github.com/features/code-search).

0 commit comments

Comments
 (0)