Skip to content

Commit aa1130e

Browse files
committed
Fix capitalization of Tree-sitter
"Tree-Sitter" should be "Tree-sitter"
1 parent 83e51d3 commit aa1130e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Kotlin Grammar for Tree-Sitter
1+
# Kotlin Grammar for Tree-sitter
22

33
[![Build](https://github.com/fwcd/tree-sitter-kotlin/actions/workflows/build.yml/badge.svg)](https://github.com/fwcd/tree-sitter-kotlin/actions/workflows/build.yml)
44
[![NPM](https://img.shields.io/npm/v/tree-sitter-kotlin)](https://www.npmjs.com/package/tree-sitter-kotlin)
55
[![crates.io](https://img.shields.io/crates/v/tree-sitter-kotlin)](https://crates.io/crates/tree-sitter-kotlin)
66

7-
[Kotlin](https://kotlinlang.org) language grammar for [Tree-Sitter](http://tree-sitter.github.io/tree-sitter/). You can try it out directly [on the web](https://fwcd.github.io/tree-sitter-kotlin).
7+
[Kotlin](https://kotlinlang.org) language grammar for [Tree-sitter](http://tree-sitter.github.io/tree-sitter/). You can try it out directly [on the web](https://fwcd.github.io/tree-sitter-kotlin).
88

99
![Icon](Icon128.png)
1010

@@ -14,8 +14,8 @@ The grammar is based on the [official language grammar](https://kotlinlang.org/d
1414

1515
| File | Description |
1616
| ---- | ----------- |
17-
| grammar.js | The Tree-Sitter grammar |
18-
| grammar-reference.js | A direct translation of the Kotlin language grammar that is, however, ambiguous to Tree-Sitter |
17+
| grammar.js | The Tree-sitter grammar |
18+
| grammar-reference.js | A direct translation of the Kotlin language grammar that is, however, ambiguous to Tree-sitter |
1919
| src | The generated parser |
2020

2121
## Setup
@@ -58,7 +58,7 @@ to launch an interactive editing environment that displays the parsed syntax tre
5858

5959
## Documentation
6060

61-
More documentation on how to create Tree-Sitter grammars [can be found here](https://tree-sitter.github.io/tree-sitter/creating-parsers).
61+
More documentation on how to create Tree-sitter grammars [can be found here](https://tree-sitter.github.io/tree-sitter/creating-parsers).
6262

6363
## See also
6464

bindings/rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Kotlin Grammar for Tree-Sitter
1+
# Kotlin Grammar for Tree-sitter
22

33
This crate provides a Kotlin grammar for the [tree-sitter](https://tree-sitter.github.io/tree-sitter/) parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file:
44

grammar-reference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ module.exports = grammar({
531531

532532
// Note how the following rules directly encode
533533
// predence and associativity rather than using
534-
// Tree-Sitters prec function. This might be
534+
// Tree-sitters prec function. This might be
535535
// changed in the future (though it reflects how
536536
// the Kotlin compiler generates its syntax tree).
537537

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tree-sitter-kotlin",
33
"version": "0.3.4",
4-
"description": "Tree-Sitter grammar for Kotlin",
4+
"description": "Tree-sitter grammar for Kotlin",
55
"main": "bindings/node",
66
"scripts": {
77
"test": "tree-sitter test",

0 commit comments

Comments
 (0)