Fix typo
This commit is contained in:
parent
6f6cf93bf2
commit
10086fcf59
@ -2,9 +2,9 @@
|
|||||||
name = "tree-sitter-dust"
|
name = "tree-sitter-dust"
|
||||||
description = "Dust grammar for the tree-sitter parsing library"
|
description = "Dust grammar for the tree-sitter parsing library"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
keywords = ["incremental", "parsing", "Dust"]
|
keywords = ["incremental", "parsing", "dust"]
|
||||||
categories = ["parsing", "text-editors"]
|
categories = ["parsing", "text-editors"]
|
||||||
repository = "https://github.com/tree-sitter/tree-sitter-Dust"
|
repository = "https://github.com/tree-sitter/tree-sitter-dust"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
module.exports = grammar({
|
module.exports = grammar({
|
||||||
name: 'Dust',
|
name: 'dust',
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
source_file: $ => repeat(choice($.comment, $.expression)),
|
source_file: $ => repeat(choice($.comment, $.expression)),
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "Dust",
|
"name": "dust",
|
||||||
"rules": {
|
"rules": {
|
||||||
"source_file": {
|
"source_file": {
|
||||||
"type": "REPEAT",
|
"type": "REPEAT",
|
||||||
|
@ -828,7 +828,7 @@ extern "C" {
|
|||||||
#define extern __declspec(dllexport)
|
#define extern __declspec(dllexport)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern const TSLanguage *tree_sitter_Dust(void) {
|
extern const TSLanguage *tree_sitter_dust(void) {
|
||||||
static const TSLanguage language = {
|
static const TSLanguage language = {
|
||||||
.version = LANGUAGE_VERSION,
|
.version = LANGUAGE_VERSION,
|
||||||
.symbol_count = SYMBOL_COUNT,
|
.symbol_count = SYMBOL_COUNT,
|
||||||
|
Loading…
Reference in New Issue
Block a user