Update vendor/docdown.

Former-commit-id: 98cda48e4b63e2cd471c927ba36afbe2bb80938e
This commit is contained in:
John-David Dalton
2013-08-16 00:31:10 -07:00
parent 425499b3aa
commit 82c17dbde2
2 changed files with 23 additions and 23 deletions

View File

@@ -4,7 +4,7 @@
* Copyright 2011-2013 John-David Dalton <http://allyoucanleet.com/>
* Available under MIT license <http://mths.be/mit>
*/
require(dirname(__FILE__) . '/src/DocDown/Generator.php');
require(dirname(__FILE__) . '/src/DocDown/MarkdownGenerator.php');
/**
* Generates Markdown from JSDoc entries in a given file.
@@ -32,7 +32,7 @@ require(dirname(__FILE__) . '/src/DocDown/Generator.php');
* ));
*/
function docdown( $options = array() ) {
$gen = new Generator($options);
$gen = new MarkdownGenerator($options);
return $gen->generate();
}
?>