From 83444aab27f619832e9c2f7e317974f6cdcafea4 Mon Sep 17 00:00:00 2001 From: Michael Hatherly Date: Thu, 12 May 2016 17:50:15 +0200 Subject: [PATCH] Change `llvmcall` docs binding The docstring for `llvmcall` was bound to a keyword rather than the actual intrinsic `Core.Intrinsics.llvmcall`. This produced the following odd behaviour when trying to find the docs: help?> llvmcall ... docs ... julia> llvmcall ERROR: UndefVarError: llvmcall not defined help?> Base.llvmcall ... no docs ... julia> Base.llvmcall (intrinsic function #90) --- base/docs/basedocs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/docs/basedocs.jl b/base/docs/basedocs.jl index cf222105857a4..dd027c01f8849 100644 --- a/base/docs/basedocs.jl +++ b/base/docs/basedocs.jl @@ -587,7 +587,7 @@ functions for further details). In most cases, this simply results in a call to See `test/llvmcall.jl` for usage examples. """ -kw"llvmcall" +Core.Intrinsics.llvmcall """ `begin...end` denotes a block of code.