Skip to content

Commit

Permalink
Merge pull request #2218 from dangereyes88/develop
Browse files Browse the repository at this point in the history
Typo corrected
  • Loading branch information
MGatner authored Sep 14, 2019
2 parents f9b1ef7 + c2bc24c commit 6eab598
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion user_guide_src/source/outgoing/view_layouts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::

<?= $this->extend('default') ?>

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/outgoing/view_parser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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) } +
+---------------+---------------------+--------------------------------------------------------------+-------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/testing/feature.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)**
Expand Down

0 comments on commit 6eab598

Please sign in to comment.