diff --git a/doc/source/topics/javascript_testing.rst b/doc/source/topics/javascript_testing.rst index cb043692ae..d0d3d0855e 100644 --- a/doc/source/topics/javascript_testing.rst +++ b/doc/source/topics/javascript_testing.rst @@ -12,7 +12,7 @@ There are multiple components in our JavaScript testing framework: * `PhantomJS`_ provides a headless WebKit (the browser engine). This gives us native support for many web features without relying on specific browsers being installed. - * `ESLint`_ is a pluggable code linting utilty. This will catch small errors + * `ESLint`_ is a pluggable code linting utility. This will catch small errors and inconsistencies in your JS, which may lead to bigger issues later on. See :ref:`js_code_style` for more detail. diff --git a/doc/source/topics/settings.rst b/doc/source/topics/settings.rst index 231614f5cb..796242f66a 100644 --- a/doc/source/topics/settings.rst +++ b/doc/source/topics/settings.rst @@ -488,7 +488,7 @@ Default: ``"themes"`` This setting tells Horizon which static directory to collect the available themes into, and therefore which URL points to the theme -colleciton root. For example, the default theme would be accessible +collection root. For example, the default theme would be accessible via ``/{{ STATIC_URL }}/themes/default``. ``THEME_COOKIE_NAME`` diff --git a/doc/source/topics/testing.rst b/doc/source/topics/testing.rst index fb0d891cd1..c27ae8aaab 100644 --- a/doc/source/topics/testing.rst +++ b/doc/source/topics/testing.rst @@ -532,7 +532,7 @@ Given the mixture of these entities in existing dashboards, it was decided that: to a Panel level if that Panel has several tabs (i.e., only terminal levels could be navigated to). -As you might have noticed, method name components are choosen from normalized items of +As you might have noticed, method name components are chosen from normalized items of the `CORE_PAGE_STRUCTURE` dictionary, where normalization means replacing spaces with `_` symbol and `&` symbol with `and`, then downcasing all symbols.