@@ -698,9 +698,9 @@ Tags: `*`
698
698
699
699
``` js
700
700
/**
701
- * @param {String} - message
701
+ * @param {String} msg - message
702
702
*/
703
- function method () {}
703
+ function method (msg ) {}
704
704
705
705
/**
706
706
* Description
@@ -710,9 +710,9 @@ function method() {}
710
710
/**
711
711
* Description
712
712
*
713
- * @param {String} - message
713
+ * @param {String} msg - message
714
714
*/
715
- function method () {}
715
+ function method (msg ) {}
716
716
```
717
717
718
718
##### Invalid
@@ -748,9 +748,9 @@ Tags: `*`
748
748
749
749
``` js
750
750
/**
751
- * @param {String} - message
751
+ * @param {String} msg - message
752
752
*/
753
- function method () {}
753
+ function method (msg ) {}
754
754
755
755
/**
756
756
* Description
@@ -759,9 +759,9 @@ function method() {}
759
759
760
760
/**
761
761
* Description
762
- * @param {String} - message
762
+ * @param {String} msg - message
763
763
*/
764
- function method () {}
764
+ function method (msg ) {}
765
765
```
766
766
767
767
##### Invalid
@@ -772,7 +772,7 @@ function method() {}
772
772
*
773
773
* @param {String} message
774
774
*/
775
- function method () {}
775
+ function method (message ) {}
776
776
```
777
777
778
778
@@ -801,9 +801,9 @@ Tags: `*`
801
801
802
802
``` js
803
803
/**
804
- * @param {String} - message
804
+ * @param {String} msg - message
805
805
*/
806
- function method () {}
806
+ function method (msg ) {}
807
807
808
808
/**
809
809
* Description.
@@ -818,17 +818,17 @@ function method() {}
818
818
/**
819
819
* Description.
820
820
*
821
- * @param {String} - message
821
+ * @param {String} msg - message
822
822
*/
823
- function method () {}
823
+ function method (msg ) {}
824
824
825
825
/**
826
826
* Description
827
- * On multiple lines.
827
+ * on multiple lines are allowed .
828
828
*
829
- * @param {String} - message
829
+ * @param {String} msg - message
830
830
*/
831
- function method () {}
831
+ function method (msg ) {}
832
832
```
833
833
834
834
##### Invalid
@@ -840,6 +840,14 @@ function method() {}
840
840
*/
841
841
function method () {}
842
842
843
+ /**
844
+ * Description
845
+ * On multiple lines should not start with an upper case.
846
+ *
847
+ * @param {String} - message
848
+ */
849
+ function method () {}
850
+
843
851
/**
844
852
* description starting with a lower case letter.
845
853
* @param {String} message
0 commit comments