From fa74e743b34b932a425ad0ca9520a42ecb3dff96 Mon Sep 17 00:00:00 2001 From: goelakash Date: Thu, 25 Feb 2016 15:06:39 +0530 Subject: [PATCH] Removed mention of current working directory. --- doc/stdlib/base.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stdlib/base.rst b/doc/stdlib/base.rst index ce6b93a7bdcae6..afcc79fe741248 100644 --- a/doc/stdlib/base.rst +++ b/doc/stdlib/base.rst @@ -126,7 +126,7 @@ Getting Around Loads a source files, in the context of the ``Main`` module, on every active node, searching standard locations for files. ``require`` is considered a top-level operation, so it sets the current ``include`` path but does not use it to search for files (see help for ``include``\ ). This function is typically used to load library code, and is implicitly called by ``using`` to load packages. - When searching for files, ``require`` first looks in the current working directory, then looks for package code under ``Pkg.dir()``\ , then tries paths in the global array ``LOAD_PATH``\ . + When searching for files, ``require`` first looks for package code under ``Pkg.dir()``\ , then tries paths in the global array ``LOAD_PATH``\ . .. function:: Base.compilecache(module::ByteString)