From 0eb913fb9a21c74eea2fa30d2f6600a39e4827bf Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Mon, 16 Nov 2020 14:14:51 +0900 Subject: [PATCH] A couple more tweaks --- src/boot/boot.janet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index d28bf7d2..f423dcf7 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2086,7 +2086,7 @@ (defn run-context "Run a context. This evaluates expressions in an environment, - and is encapsulates the parsing, compilation, and evaluation. + and encapsulates the parsing, compilation, and evaluation. Returns (in environment :exit-value environment) when complete. opts is a table or struct of options. The options are as follows:\n\n\t :chunks - callback to read into a buffer - default is getline\n\t @@ -2098,7 +2098,7 @@ :on-status - callback when a value is evaluated - default is debug/stacktrace\n\t :fiber-flags - what flags to wrap the compilation fiber with. Default is :ia.\n\t :expander - an optional function that is called on each top level form before being compiled.\n\t - :parser - provide a custom parser that implements the same interface as Janet's built in parser.\n\t + :parser - provide a custom parser that implements the same interface as Janet's built-in parser.\n\t :read - optional function to get the next form, called like (read env source). Overrides all parsing." [opts]