From cb06bce53b157f4f9a4144648a8f700550c828ac Mon Sep 17 00:00:00 2001 From: TEC <git@tecosaur.net> Date: Tue, 22 Oct 2024 23:55:32 +0800 Subject: [PATCH] docs(REPL/add): clarify the optionality of 'from' --- REPL/ext/REPLMode/add.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/REPL/ext/REPLMode/add.jl b/REPL/ext/REPLMode/add.jl index 66938394..53310769 100644 --- a/REPL/ext/REPLMode/add.jl +++ b/REPL/ext/REPLMode/add.jl @@ -9,9 +9,12 @@ Optionally, the *name* and *source* can be specified using the following forms: data> add NAME data> add NAME from SOURCE + data> add NAME SOURCE data> add from SOURCE -As a shorthand, `f` can be used instead of `from`. +The `from` keyword is optional, except for in the final form where only the +source is immediately provided. To include spaces in the name, use either single +or double quotes (e.g. `"name with spaces"`). The transformers drivers used can also be specified by using a `via` argument before `from`, with a form like so: