From 8ea83680f1b20f6750ad967ac543e46cb169499a Mon Sep 17 00:00:00 2001 From: atanas-angelov-dev Date: Mon, 27 Nov 2017 09:47:11 +0200 Subject: [PATCH] fix typos in container conditions --- documentation/10-containers/10-conditional-display.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/10-containers/10-conditional-display.md b/documentation/10-containers/10-conditional-display.md index d05de8f..367e120 100644 --- a/documentation/10-containers/10-conditional-display.md +++ b/documentation/10-containers/10-conditional-display.md @@ -11,7 +11,7 @@ _Note: chaining conditions behaves exactly like a normal php `if` statement with | Parameter | Description | |------------------------|---------------------------------------------------------------------------------------------------------------| -| `$condition` | A condition type name as a string (refer to the `Container Types` page) | +| `$condition` | A condition type name as a string (refer to the `Condition Types` page) | | `$comparison_operator` | Can be one of the following: `'='`, `'!='`, `'>'`, `'>='`, `'<'`, `'<='`, `'IN'`, `'NOT IN'`, `'CUSTOM'` | | `$value` | The value to check against. `IN` and `NOT IN` operators expect an array; `CUSTOM` operator expects a callable | @@ -59,7 +59,7 @@ Container::make( 'post_meta', 'Custom Data' ) ##### Nested logic -In order to achieve nested display logic the `when()` and `or_when()` methods also support being invoked with a `callable`: +In order to achieve nested display logic the `where()` and `or_where()` methods also support being invoked with a `callable`: ```php Container::make( 'post_meta', 'Custom Data' )