more doc variable name fixes

This commit is contained in:
Carsten Brandt
2013-05-08 02:47:26 +02:00
parent 88c74e99c3
commit ed74636af8

View File

@ -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_',
* ));
* ```