From 902a5c199d590552758f7a91cc75c47ea67de5f2 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Thu, 5 May 2022 17:00:54 +0200 Subject: [PATCH] make the docs for `gensym` slightly more precise (#45182) fixes https://github.com/JuliaLang/julia/issues/44903 --- base/expr.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/expr.jl b/base/expr.jl index 4e01ec41ef0ae..e0cd8a9b0a32c 100644 --- a/base/expr.jl +++ b/base/expr.jl @@ -9,7 +9,7 @@ const is_expr = isexpr """ gensym([tag]) -Generates a symbol which will not conflict with other variable names. +Generates a symbol which will not conflict with other variable names (in the same module). """ gensym() = ccall(:jl_gensym, Ref{Symbol}, ())