From 823c4e9c16eadcd27203c0596fa6b54daabc9b5b Mon Sep 17 00:00:00 2001 From: Rob Lauer Date: Mon, 3 Jun 2019 09:52:16 -0500 Subject: [PATCH] updating broken links (#7280) the usejsdoc.org links are broken. also the newly commented out section links to a file in a private repo. --- CodingConvention.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CodingConvention.md b/CodingConvention.md index dc7cea973..4ac32c31c 100644 --- a/CodingConvention.md +++ b/CodingConvention.md @@ -427,8 +427,8 @@ Use the [JSDoc][JSDOC] convention for comments. When writing a comment always th + When you are creating a new class + Public methods - include all the arguments and if possible the types {String}, {Number}. Optional arguments should be marked too. Check the [@param tag][param] -[JSDOC]: http://usejsdoc.org/ -[param]: http://usejsdoc.org/tags-param.html +[JSDOC]: https://devdocs.io/jsdoc/ +[param]: https://devdocs.io/jsdoc/tags-param ## File/module structure @@ -439,7 +439,9 @@ A typical module should have the following structure: 3. export variables and functions 4. export class declarations + ## File naming Use lower case for file names. Use a dash to separate different words.