Correct print statement and enhance documentation
Fix syntax error in print statement and update comments.
This commit is contained in:
@@ -2,9 +2,7 @@
|
|||||||
# gendoc vbeta - Generates docs from source comments
|
# gendoc vbeta - Generates docs from source comments
|
||||||
#
|
#
|
||||||
# FEATURES:
|
# FEATURES:
|
||||||
# - Generate complete build systems: Autotools-like Makefile
|
# - Generate comment-based documentation
|
||||||
# - Generate complete base system, ready to compile
|
|
||||||
# - Generate preconfigured gcklib, ready to import
|
|
||||||
#
|
#
|
||||||
# LIMITATIONS:
|
# LIMITATIONS:
|
||||||
# - Platform: Only builds for POSIX systems
|
# - Platform: Only builds for POSIX systems
|
||||||
@@ -75,8 +73,15 @@ entry = '''
|
|||||||
# TODO: Parse for /*- -*/
|
# TODO: Parse for /*- -*/
|
||||||
# TODO: Add entry to entries arr
|
# TODO: Add entry to entries arr
|
||||||
|
|
||||||
|
# Entry structure
|
||||||
|
#
|
||||||
|
# /*- ;Start marker
|
||||||
|
# int addTwo(int x) ;Signature
|
||||||
|
# Adds two to x ;Description
|
||||||
|
# -*/ ;End marker
|
||||||
|
|
||||||
def main(args):
|
def main(args):
|
||||||
print(f"call {args[0]}")
|
print(f"call {args[0]}"
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
Reference in New Issue
Block a user