From c0123151d577ae36698ae11b3497fe0b5f5fbca5 Mon Sep 17 00:00:00 2001 From: ScottPJones Date: Fri, 29 Jan 2016 13:45:57 -0500 Subject: [PATCH] Work around problem with call introduced by #13412 --- base/docs/helpdb/Base.jl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/base/docs/helpdb/Base.jl b/base/docs/helpdb/Base.jl index 98e148eb16a67..ad2e94a18649c 100644 --- a/base/docs/helpdb/Base.jl +++ b/base/docs/helpdb/Base.jl @@ -3179,14 +3179,6 @@ The lowest value representable by the given (real) numeric DataType `T`. """ typemin -""" - call(x, args...) - -If `x` is not a `Function`, then `x(args...)` is equivalent to `call(x, args...)`. This -means that function-like behavior can be added to any type by defining new `call` methods. -""" -call - """ countfrom(start=1, step=1)