From 7166d6d7b9c07747a96fe9379ad40141ce1db024 Mon Sep 17 00:00:00 2001 From: vx_clutch <98831688+vx-clutch@users.noreply.github.com> Date: Fri, 24 Oct 2025 13:31:08 -0400 Subject: [PATCH] Correct print statement and enhance documentation Fix syntax error in print statement and update comments. --- build-aux/__gendoc.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/build-aux/__gendoc.py b/build-aux/__gendoc.py index 818656e..7fef08e 100644 --- a/build-aux/__gendoc.py +++ b/build-aux/__gendoc.py @@ -2,9 +2,7 @@ # gendoc vbeta - Generates docs from source comments # # FEATURES: -# - Generate complete build systems: Autotools-like Makefile -# - Generate complete base system, ready to compile -# - Generate preconfigured gcklib, ready to import +# - Generate comment-based documentation # # LIMITATIONS: # - Platform: Only builds for POSIX systems @@ -75,8 +73,15 @@ entry = ''' # TODO: Parse for /*- -*/ # 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): - print(f"call {args[0]}") + print(f"call {args[0]}" return 0 if __name__ == "__main__":