From ae55ed7fb34ecf026f0d83ed7ca9434548819b4b Mon Sep 17 00:00:00 2001 From: Steven Syrek Date: Tue, 9 Jan 2018 17:43:57 +0100 Subject: [PATCH] Fix @constant example There were missing asterisks at the beginning of a few lines, and I moved the tag itself to the second line, in keeping with the style of other JSDoc tags. --- content/en/tags-constant.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/content/en/tags-constant.md b/content/en/tags-constant.md index 2dbed596..205e7d5f 100644 --- a/content/en/tags-constant.md +++ b/content/en/tags-constant.md @@ -28,10 +28,11 @@ declarations. {% example "A string constant representing the color red" %} ```js -/** @constant - @type {string} - @default -*/ +/** + * @constant + * @type {string} + * @default + */ const RED = 'FF0000'; /** @constant {number} */