From ed74636af8c61828172f8d695c202368669b3e88 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Wed, 8 May 2013 02:47:26 +0200 Subject: [PATCH] more doc variable name fixes --- framework/helpers/Markdown.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/helpers/Markdown.php b/framework/helpers/Markdown.php index a8fd0c863b..3f6c98eac8 100644 --- a/framework/helpers/Markdown.php +++ b/framework/helpers/Markdown.php @@ -13,13 +13,13 @@ namespace yii\helpers; * Basic usage is the following: * * ```php - * $my_html = Markdown::process($my_text); + * $myHtml = Markdown::process($myText); * ``` * * If you want to configure the parser: * * ```php - * $my_html = Markdown::process($my_text, array( + * $myHtml = Markdown::process($myText, array( * 'fn_id_prefix' => 'footnote_', * )); * ```