From 1aff22e2ddadef96f9814cbcdaed8982b175b8e7 Mon Sep 17 00:00:00 2001 From: Nikita Sirgienko Date: Thu, 23 Aug 2018 10:16:28 +0300 Subject: [PATCH] Update info about `versioninfo` in devdocs (#28810) (cherry picked from commit b411a58b4ef620f9a92770a5cb2deaed87d6beeb) --- doc/src/devdocs/backtraces.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/devdocs/backtraces.md b/doc/src/devdocs/backtraces.md index ca750b79a320d..a65a494bbc3a4 100644 --- a/doc/src/devdocs/backtraces.md +++ b/doc/src/devdocs/backtraces.md @@ -15,10 +15,10 @@ and follow the instructions to generate the debugging information requested. Ta ## [Version/Environment info](@id dev-version-info) No matter the error, we will always need to know what version of Julia you are running. When Julia -first starts up, a header is printed out with a version number and date. Please also include the -output of `versioninfo()` in any report you create: +first starts up, a header is printed out with a version number and date. Please also include the output of `versioninfo()` (exported from the [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) standard library) in any report you create: ```@repl +using InteractiveUtils versioninfo() ```