Skip to content

Commit b1e6a86

Browse files
authored
Merge pull request #11757 from erik-krogh/treesitter-qldoc
QL/RB: make top TreeSitter.qll comment into a qldoc
2 parents b5b0a64 + 2ff23a6 commit b1e6a86

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ql/generator/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ fn main() -> std::io::Result<()> {
604604
let mut ql_writer = LineWriter::new(File::create(ql_library_path)?);
605605
write!(
606606
ql_writer,
607-
"/*\n\
607+
"/**\n\
608608
* CodeQL library for {}
609609
* Automatically generated from the tree-sitter grammar; do not edit\n\
610610
*/\n\n",

ql/ql/src/codeql_ql/ast/internal/TreeSitter.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* CodeQL library for QL
33
* Automatically generated from the tree-sitter grammar; do not edit
44
*/

ruby/generator/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ fn main() -> std::io::Result<()> {
599599
let mut ql_writer = LineWriter::new(File::create(ql_library_path)?);
600600
write!(
601601
ql_writer,
602-
"/*\n\
602+
"/**\n\
603603
* CodeQL library for {}
604604
* Automatically generated from the tree-sitter grammar; do not edit\n\
605605
*/\n\n",

ruby/ql/lib/codeql/ruby/ast/internal/TreeSitter.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* CodeQL library for Ruby
33
* Automatically generated from the tree-sitter grammar; do not edit
44
*/

0 commit comments

Comments
 (0)