summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Konchin <[email protected]>2024-06-25 16:14:12 +0300
committergit <[email protected]>2024-06-25 20:15:25 +0000
commita47c152ab50900a9164d67612ad2b321a2668c3a ()
tree2f45df2ea3dde812be9adcd4e62195f04cdb812c
parentb88ac94eec96c05ae230e37ca4c59ac236340082 (diff)
[ruby/prism] Fix documentation comment in generated with templates files
Fix warning ``` /******************************************************************************/ ^ warning: [dangling-doc-comments] documentation comment is not attached to any declaration ``` in Nodes.java and AbstractNodeVisitor.java files. /** is treated as a starting of a javadoc comment. https://.com/ruby/prism/commit/c83d7844b8
-rwxr-xr-xprism/templates/template.rb4
1 files changed, 2 insertions, 2 deletions
@@ -559,13 +559,13 @@ module Prism
HEADING
else
<<~HEADING
- /******************************************************************************/
/* This file is generated by the templates/template.rb script and should not */
/* be modified manually. See */
/* #{filepath + " " * (74 - filepath.size) } */
/* if you are looking to modify the */
/* template */
- /******************************************************************************/
HEADING
end