Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Jun 30, 2016
1 parent eb8d53e commit 91662b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Jade/JadeSymfonyEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct($kernel)
}
$this->jade = new Jade(array(
'prettyprint' => $kernel->isDebug(),
'extension' => '.pug',
'extension' => array('.pug', '.jade'),
'cache' => $cache
));
foreach (array_slice(func_get_args(), 1) as $helper) {
Expand Down
2 changes: 1 addition & 1 deletion src/Pug/PugSymfonyEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

use Jade\JadeSymfonyEngine;

class JadeSymfonyEngine extends JadeSymfonyEngine
class PugSymfonyEngine extends JadeSymfonyEngine
{
}

0 comments on commit 91662b2

Please sign in to comment.