From e858727bd00d102f2df94f29c55ea4095b513f19 Mon Sep 17 00:00:00 2001 From: Paul Spencer Date: Mon, 28 Oct 2013 16:11:40 -0400 Subject: [PATCH] Fix `@todo observable` name reference. --- apidoc/plugins/todo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apidoc/plugins/todo.js b/apidoc/plugins/todo.js index 1389daaa32..1a8a4ec65e 100644 --- a/apidoc/plugins/todo.js +++ b/apidoc/plugins/todo.js @@ -15,7 +15,7 @@ exports.defineTags = function(dictionary) { var readonly = parts.length > 3 && parts[3] === 'readonly'; var description = (readonly ? parts.slice(4) : parts.slice(3)).join(' '); doclet.observables.push({ - name: parts[2], + name: parts[1], type: { names: tag.value.type.names },