Rename Mustache_Mustache to Mustache_Engine.

Because the former was just too absurd to keep typing.
This commit is contained in:
Justin Hileman
2012-05-01 21:30:22 -07:00
parent 1ffd7c1a8f
commit be5cfb3e9e
14 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ A quick example:
```php
<?php
$m = new Mustache_Mustache;
$m = new Mustache_Engine;
echo $m->render('Hello {{planet}}', array('planet' => 'World!')); // "Hello World!"
```
@@ -49,7 +49,7 @@ And render it:
```php
<?php
$m = new Mustache_Mustache;
$m = new Mustache_Engine;
$chris = new Chris;
echo $m->render($template, $chris);
```