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