From a7ea27d0a08286a495830c6acbaf96fa772597be Mon Sep 17 00:00:00 2001 From: Zander Baldwin Date: Sat, 27 Oct 2012 01:09:54 +0000 Subject: [PATCH] Update "docs/views/html.md", parse error in example code. The example code for the `HTML::entities()` method in the documentation had unescaped apostrophes (single quotes) in the string passed as the first parameter. A parse error would have resulted should someone try to use that code. --- laravel/documentation/views/html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/documentation/views/html.md b/laravel/documentation/views/html.md index e94e9e14b63..629387c830d 100644 --- a/laravel/documentation/views/html.md +++ b/laravel/documentation/views/html.md @@ -21,11 +21,11 @@ For example, the < symbol should be converted to its entity representation. Conv #### Converting a string to its entity representation: - echo HTML::entities(''); + echo HTML::entities(''); #### Using the "e" global helper: - echo e(''); + echo e(''); ## Scripts And Style Sheets