From 494e2977125cb7ad5bb589cd38d0ade6df9540d4 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 1 May 2023 22:51:20 -0500 Subject: [PATCH] fixed: `onyx help` missing newline --- CHANGELOG | 2 +- compiler/src/onyx.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"; -- 2.25.1