This commit is contained in:
Jeff 2023-08-22 19:59:15 -04:00
parent 6f6cf93bf2
commit 10086fcf59
4 changed files with 5 additions and 5 deletions

View File

@ -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"

View File

@ -1,5 +1,5 @@
module.exports = grammar({
name: 'Dust',
name: 'dust',
rules: {
source_file: $ => repeat(choice($.comment, $.expression)),

View File

@ -1,5 +1,5 @@
{
"name": "Dust",
"name": "dust",
"rules": {
"source_file": {
"type": "REPEAT",

View File

@ -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,