Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 67463fb

Browse files
committed
Some README typo fixes
1 parent 1ebf0a5 commit 67463fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Syntax Tree can be used as a library to access the syntax tree underlying Ruby s
328328

329329
### SyntaxTree.read(filepath)
330330

331-
This function takes a filepath and returns a string associated with the content of that file. It is similar in functionality to `File.read`, except htat it takes into account Ruby-level file encoding (through magic comments at the top of the file).
331+
This function takes a filepath and returns a string associated with the content of that file. It is similar in functionality to `File.read`, except that it takes into account Ruby-level file encoding (through magic comments at the top of the file).
332332

333333
### SyntaxTree.parse(source)
334334

@@ -570,7 +570,7 @@ SyntaxTree::Formatter.format(source, program.accept(visitor))
570570
### WithEnvironment
571571

572572
The `WithEnvironment` module can be included in visitors to automatically keep track of local variables and arguments
573-
defined inside each environment. A `current_environment` accessor is made availble to the request, allowing it to find
573+
defined inside each environment. A `current_environment` accessor is made available to the request, allowing it to find
574574
all usages and definitions of a local.
575575

576576
```ruby
@@ -611,7 +611,7 @@ The language server also responds to the relatively new inlay hints request. Thi
611611
1 + 2 * 3
612612
```
613613

614-
Implicity, the `2 * 3` is going to be executed first because the `*` operator has higher precedence than the `+` operator. To ease mental overhead, our language server includes small parentheses to make this explicit, as in:
614+
Implicitly, the `2 * 3` is going to be executed first because the `*` operator has higher precedence than the `+` operator. To ease mental overhead, our language server includes small parentheses to make this explicit, as in:
615615

616616
```ruby
617617
1 +2 * 3
@@ -686,7 +686,7 @@ Below are listed all of the "official" language plugins hosted under the same Gi
686686

687687
## Integration
688688

689-
Syntax Tree's goal is to seemlessly integrate into your workflow. To this end, it provides a couple of additional tools beyond the CLI and the Ruby library.
689+
Syntax Tree's goal is to seamlessly integrate into your workflow. To this end, it provides a couple of additional tools beyond the CLI and the Ruby library.
690690

691691
### Rake
692692

0 commit comments

Comments
 (0)