Skip to content

Commit

Permalink
Fix docs diff
Browse files Browse the repository at this point in the history
  • Loading branch information
bheylin committed Nov 1, 2024
1 parent 1ce9de0 commit d1ef82d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ Language scopes:

--csharp-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope C# code using a custom tree-sitter query. The query can be given inline or
if as a path to a file containing a query.
as a path to a file containing a query.
[env: CSHARP_QUERY=]

Expand Down Expand Up @@ -1641,7 +1641,7 @@ Language scopes:

--go-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope Go code using a custom tree-sitter query. The query can be given inline or
if as a path to a file containing a query.
as a path to a file containing a query.
[env: GO_QUERY=]

Expand Down Expand Up @@ -1669,7 +1669,7 @@ Language scopes:

--hcl-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope HashiCorp Configuration Language code using a custom tree-sitter query.
The query can be given inline or if as a path to a file containing a query.
The query can be given inline or as a path to a file containing a query.
[env: HCL_QUERY=]

Expand Down Expand Up @@ -1709,7 +1709,7 @@ Language scopes:

--python-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope Python code using a custom tree-sitter query. The query can be given
inline or if as a path to a file containing a query.
inline or as a path to a file containing a query.
[env: PYTHON_QUERY=]

Expand Down Expand Up @@ -1770,7 +1770,7 @@ Language scopes:

--rust-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope Rust code using a custom tree-sitter query. The query can be given inline
or if as a path to a file containing a query.
or as a path to a file containing a query.
[env: RUST_QUERY=]

Expand Down Expand Up @@ -1804,7 +1804,7 @@ Language scopes:

--typescript-query <TREE-SITTER-QUERY-OR-FILENAME>
Scope TypeScript code using a custom tree-sitter query. The query can be given
inline or if as a path to a file containing a query.
inline or as a path to a file containing a query.
[env: TYPESCRIPT_QUERY=]

Expand Down
12 changes: 6 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ mod cli {
c: Vec<c::PreparedQuery>,

/// Scope C code using a custom tree-sitter query. The query can be given inline or
/// if as a path to a file containing a query.
/// as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
c_query: Vec<QuerySourceOrPath>,
}
Expand All @@ -1389,7 +1389,7 @@ mod cli {
csharp: Vec<csharp::PreparedQuery>,

/// Scope C# code using a custom tree-sitter query. The query can be given inline or
/// if as a path to a file containing a query.
/// as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
csharp_query: Vec<QuerySourceOrPath>,
}
Expand Down Expand Up @@ -1417,7 +1417,7 @@ mod cli {
go: Vec<go::PreparedQuery>,

/// Scope Go code using a custom tree-sitter query. The query can be given inline or
/// if as a path to a file containing a query.
/// as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
go_query: Vec<QuerySourceOrPath>,
}
Expand All @@ -1430,7 +1430,7 @@ mod cli {
python: Vec<python::PreparedQuery>,

/// Scope Python code using a custom tree-sitter query. The query can be given
/// inline or if as a path to a file containing a query.
/// inline or as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
python_query: Vec<QuerySourceOrPath>,
}
Expand All @@ -1443,7 +1443,7 @@ mod cli {
rust: Vec<rust::PreparedQuery>,

/// Scope Rust code using a custom tree-sitter query. The query can be given inline
/// or if as a path to a file containing a query.
/// or as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
rust_query: Vec<QuerySourceOrPath>,
}
Expand All @@ -1456,7 +1456,7 @@ mod cli {
typescript: Vec<typescript::PreparedQuery>,

/// Scope TypeScript code using a custom tree-sitter query. The query can be given
/// inline or if as a path to a file containing a query.
/// inline or as a path to a file containing a query.
#[arg(long, env, verbatim_doc_comment, value_name = TREE_SITTER_QUERY_VALUE_OR_FILENAME)]
typescript_query: Vec<QuerySourceOrPath>,
}
Expand Down

0 comments on commit d1ef82d

Please sign in to comment.