diff --git a/doc/source/ref/run_tests.rst b/doc/source/ref/run_tests.rst index 87c33243e..951c82e81 100644 --- a/doc/source/ref/run_tests.rst +++ b/doc/source/ref/run_tests.rst @@ -126,7 +126,7 @@ module with the basic panel code filled in, and various other common Available options: * ``-d``, ``--dashboard``: The dotted python path to your dashboard app (the - module which containers the ``dashboard.py`` file.). If not specified, the + module which contains the ``dashboard.py`` file.). If not specified, the target dashboard should be specified in a pluggable settings file for the panel. * ``--target``: the directory in which the panel files should be created. diff --git a/doc/source/topics/styling.rst b/doc/source/topics/styling.rst index a910ab539..5e440ce04 100644 --- a/doc/source/topics/styling.rst +++ b/doc/source/topics/styling.rst @@ -12,7 +12,7 @@ Code Layout =========== The base SCSS can be found at ``openstack_dashboard/static/dashboard/scss/``. -This directory should **only** contain the minimal styling for functionality; +This directory should **only** contain the minimal styling for functionality code that isn't configurable by themes. ``horizon.scss`` is a top level file that imports from the ``components/`` directory, as well as other base styling files; potentially some basic page layout rules that Horizon relies on to diff --git a/doc/source/topics/tables.rst b/doc/source/topics/tables.rst index b521a4cd7..37214805b 100644 --- a/doc/source/topics/tables.rst +++ b/doc/source/topics/tables.rst @@ -262,7 +262,7 @@ The javascript wrapper for inline editing allows each table cell that has in-line editing available to: #. Refresh itself with new data from the server. - #. Display in edit mod. + #. Display in edit mode. #. Send changed data to server. #. Display validation errors. diff --git a/doc/source/tutorials/plugin.rst b/doc/source/tutorials/plugin.rst index e1469cd0a..8292b89c1 100644 --- a/doc/source/tutorials/plugin.rst +++ b/doc/source/tutorials/plugin.rst @@ -147,7 +147,7 @@ _31000_myplugin.py:: ADD_JS_FILES = [] # A list of scss files to be included in the compressed set of files - ADD_SCSS_FILES = ['dashboard/identity/myplugin/myplugin.scss'] + ADD_SCSS_FILES = ['dashboard/identity/myplugin/mypanel/mypanel.scss'] .. Note ::