From 6c7c7e39a35549398124cbf846194fe2d37e3f3b Mon Sep 17 00:00:00 2001 From: Jiahao Chen Date: Sat, 11 Oct 2014 17:48:56 -0400 Subject: [PATCH] doc:modules: Add required newline after table --- doc/manual/modules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/modules.rst b/doc/manual/modules.rst index db77b4268d9c6..b9289cc24f49a 100644 --- a/doc/manual/modules.rst +++ b/doc/manual/modules.rst @@ -108,8 +108,8 @@ In this module we export the ``x`` and ``y`` functions (with the keyword ``expor +------------------------------------+-------------------------------------+---------------------------------------------------+ | ``importall MyModule`` | ``x``, ``y``, ``MyModule.*`` | ``x``, ``y``, ``MyModule.*`` | +------------------------------------+-------------------------------------+---------------------------------------------------+ -Note: In all cases, ``MyModule.*`` (i.e. ``MyModule.x``, ``MyModule.y`` and ``MyModule.p``) are loaded into current workspace and it is possible to add methods to them. +In all cases, ``MyModule.*`` (i.e. ``MyModule.x``, ``MyModule.y`` and ``MyModule.p``) are loaded into current workspace and it is possible to add methods to them. Modules and files -----------------