From c19e1c209b8806c6a1b4a32f0a4aef462e744a1a Mon Sep 17 00:00:00 2001 From: Chris de Graaf Date: Sun, 4 Nov 2018 12:43:31 -0600 Subject: [PATCH] Update old reference to Base.REPL (#29910) (cherry picked from commit 099979931ce1e666e15ba090cf257bd4fbae8ede) --- stdlib/REPL/docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/REPL/docs/src/index.md b/stdlib/REPL/docs/src/index.md index 2afa93dfb32eaf..3f507918a62566 100644 --- a/stdlib/REPL/docs/src/index.md +++ b/stdlib/REPL/docs/src/index.md @@ -47,7 +47,7 @@ In Julia mode, the REPL supports something called *prompt pasting*. This activat text that starts with `julia> ` into the REPL. In that case, only expressions starting with `julia> ` are parsed, others are removed. This makes it is possible to paste a chunk of code that has been copied from a REPL session without having to scrub away prompts and outputs. This -feature is enabled by default but can be disabled or enabled at will with `Base.REPL.enable_promptpaste(::Bool)`. +feature is enabled by default but can be disabled or enabled at will with `REPL.enable_promptpaste(::Bool)`. If it is enabled, you can try it out by pasting the code block above this paragraph straight into the REPL. This feature does not work on the standard Windows command prompt due to its limitation at detecting when a paste occurs.