Skip to content

Commit 212a80f

Browse files
committed
chore: remove 'static
1 parent 28724a8 commit 212a80f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings/rust/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ pub const GRAMMAR: &str = include_str!("../../grammar.js");
4949
/// The syntax highlighting query for this language.
5050
pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm");
5151

52+
/// The symbol tagging query for this language.
53+
pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm");
54+
5255
/// The content of the [`node-types.json`][] file for this grammar.
5356
///
5457
/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types
5558
pub const NODE_TYPES: &str = include_str!("../../src/node-types.json");
5659

57-
/// The symbol tagging query for this language.
58-
pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm");
59-
6060
#[cfg(test)]
6161
mod tests {
6262
#[test]

0 commit comments

Comments
 (0)