Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 860d42a

Browse files
committed
Adds missing helper calls in code examples
1 parent e47cb5b commit 860d42a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/book/helpers/head-title.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ method.
150150
```php
151151
$this->headTitle()->setDefaultAttachOrder('PREPEND');
152152

153-
echo $this->getDefaultAttachOrder(); // PREPEND
153+
echo $this->headTitle()->getDefaultAttachOrder(); // PREPEND
154154
```
155155

156156
#### Default Value
@@ -177,7 +177,7 @@ method.
177177
```php
178178
$this->headTitle()->setSeparator(' | ');
179179

180-
echo $this->getSeparator(); // |
180+
echo $this->headTitle()->getSeparator(); // |
181181
```
182182

183183
### Default Value

0 commit comments

Comments
 (0)