diff --git a/user_guide_src/source/outgoing/view_layouts.rst b/user_guide_src/source/outgoing/view_layouts.rst index cf6d1f95b2f6..e93ea9e17e7c 100644 --- a/user_guide_src/source/outgoing/view_layouts.rst +++ b/user_guide_src/source/outgoing/view_layouts.rst @@ -38,7 +38,7 @@ what to name the content section. Using Layouts in Views ********************** -Whenveer a view wants to be inserted into a layout, it must use the ``extend()`` method at the top of the file:: +Whenever a view wants to be inserted into a layout, it must use the ``extend()`` method at the top of the file:: extend('default') ?> diff --git a/user_guide_src/source/outgoing/view_parser.rst b/user_guide_src/source/outgoing/view_parser.rst index 240852999949..e6c872af84e9 100644 --- a/user_guide_src/source/outgoing/view_parser.rst +++ b/user_guide_src/source/outgoing/view_parser.rst @@ -425,7 +425,7 @@ The following filters are available when using the parser: +---------------+---------------------+--------------------------------------------------------------+-------------------------------------+ + highlight_code+ + Highlights code samples with HTML/CSS. + { v|highlight_code } + +---------------+---------------------+--------------------------------------------------------------+-------------------------------------+ -+ limit_chars + limit + Limits the number of chracters to $limit. + { v|limit_chars(100) } + ++ limit_chars + limit + Limits the number of characters to $limit. + { v|limit_chars(100) } + +---------------+---------------------+--------------------------------------------------------------+-------------------------------------+ + limit_words + limit + Limits the number of words to $limit. + { v|limit_words(20) } + +---------------+---------------------+--------------------------------------------------------------+-------------------------------------+ diff --git a/user_guide_src/source/testing/feature.rst b/user_guide_src/source/testing/feature.rst index c57b5a79d7d0..452a6984e5ba 100644 --- a/user_guide_src/source/testing/feature.rst +++ b/user_guide_src/source/testing/feature.rst @@ -256,7 +256,7 @@ Asserts the exact opposite of the **assertSee()** method:: // Checks that "Hello World" does NOT exist on the page $results->dontSee('Hello World'); - // Checks that "Hellow World" does NOT exist within any h1 tag + // Checks that "Hello World" does NOT exist within any h1 tag $results->dontSee('Hello World', 'h1'); **assertSeeElement(string $search)**