Escape asterisks and other characters in generated docs. [ci skip]

This commit is contained in:
John-David Dalton
2013-10-21 22:35:31 -07:00
parent 4622e9658d
commit b27dfd4c77
3 changed files with 152 additions and 129 deletions

View File

@@ -2121,10 +2121,10 @@
* Circle.prototype = _.create(Shape.prototype, { 'constructor': Circle });
*
* var circle = new Circle;
* circle instanceof Circle
* circle instanceof Circle;
* // => true
*
* circle instanceof Shape
* circle instanceof Shape;
* // => true
*/
function create(prototype, properties) {