We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553ee60 commit d4ead49Copy full SHA for d4ead49
dcrpcgen/java/utils.py
@@ -11,7 +11,7 @@ def get_banner() -> str:
11
def create_comment(text: str, indentation: str = "") -> str:
12
"""Generate a Java comment"""
13
if "\n" not in text:
14
- return f"{indentation}/* {text.strip()} */\n"
+ return f"{indentation}/** {text.strip()} */\n"
15
16
comment = f"{indentation}/**\n"
17
for line in text.split("\n"):
0 commit comments