From cb6a893fb4645e3d57b4ee7806120bbe6f245763 Mon Sep 17 00:00:00 2001 From: dangereyes88 <27726982+dangereyes88@users.noreply.github.com> Date: Sat, 14 Sep 2019 21:14:36 +0500 Subject: [PATCH 1/3] Update view_layouts.rst Typo Corrected --- user_guide_src/source/outgoing/view_layouts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') ?> From 4830a9bd12bb355e05a5bc0984bac0913d5a62ca Mon Sep 17 00:00:00 2001 From: dangereyes88 <27726982+dangereyes88@users.noreply.github.com> Date: Sat, 14 Sep 2019 21:17:21 +0500 Subject: [PATCH 2/3] Update view_parser.rst Typo Corrected --- user_guide_src/source/outgoing/view_parser.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } + +---------------+---------------------+--------------------------------------------------------------+-------------------------------------+ From c2bc24c5b7f09eed650436efbcf023bd414abb2c Mon Sep 17 00:00:00 2001 From: dangereyes88 <27726982+dangereyes88@users.noreply.github.com> Date: Sat, 14 Sep 2019 21:19:32 +0500 Subject: [PATCH 3/3] Update feature.rst Typo corrected --- user_guide_src/source/testing/feature.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)**