From: Brendan Hansen Date: Tue, 2 May 2023 03:51:20 +0000 (-0500) Subject: fixed: `onyx help` missing newline X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=494e2977125cb7ad5bb589cd38d0ade6df9540d4;p=onyx.git fixed: `onyx help` missing newline --- diff --git a/CHANGELOG b/CHANGELOG index 491c0d7c..b6430334 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,7 +11,7 @@ Changes: Bugfixes: * Fixed missing `use core` in `optional.onyx`. - Fixes `Optional.reset` and `Optional.hash` - +* Fixed missing newline in `onyx help build` documentation. diff --git a/compiler/src/onyx.c b/compiler/src/onyx.c index d0132e54..0a06f397 100644 --- a/compiler/src/onyx.c +++ b/compiler/src/onyx.c @@ -75,7 +75,7 @@ static const char *build_docstring = DOCSTRING_HEADER "Developer options:\n" "\t--no-colors Disables colors in the error message.\n" "\t--no-file-contents Disables '#file_contents' for security.\n" - "\t--show-all-errors Print all errors (can result in many consequencial errors from a single error)" + "\t--show-all-errors Print all errors (can result in many consequencial errors from a single error)\n" "\t--print-function-mappings Prints a mapping from WASM function index to source location.\n" "\t--print-static-if-results Prints the conditional result of each #if statement. Useful for debugging.\n" "\n";