From 65b2fd64998750ca1abbf2c7dae32d96bc9840b4 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Thu, 27 Mar 2014 14:42:54 -0700 Subject: [PATCH] fix typo; cleanup --- test/fixtures/jslangnames.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/fixtures/jslangnames.js b/test/fixtures/jslangnames.js index ed7ce136..a80d9439 100644 --- a/test/fixtures/jslangnames.js +++ b/test/fixtures/jslangnames.js @@ -5,19 +5,19 @@ var constructor = { }; /** @namespace */ -var prototye = { +var prototype = { /** document me */ valueOf: function(){} -} +}; /** - This is Object - @namespace Object -*/ + * This is Object + * @namespace Object + */ /** - This is Object.hasOwnProperty - @method Object.hasOwnProperty + * This is Object.hasOwnProperty + * @method Object.hasOwnProperty */ // NOTE: you can't document a prototype of an object in JSDoc -- seriously, you just can't