File tree 1 file changed +8
-9
lines changed
1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -2827,20 +2827,19 @@ <h3 id="jsdoc-enum-and-typedef-comments">7.7 Enum and typedef comments</h3>
2827
2827
2828
2828
< pre > < code class ="language-js prettyprint good "> /**
2829
2829
* A useful type union, which is reused often.
2830
- * @typedef {!Bandersnatch|!BandersnatchType }
2830
+ * @typedef {!FruitType|!FruitTypeEnum }
2831
2831
*/
2832
2832
let CoolUnionType;
2833
-
2834
-
2833
+
2835
2834
/**
2836
- * Types of bandersnatches .
2835
+ * Types of fruits .
2837
2836
* @enum {string}
2838
2837
*/
2839
- const BandersnatchType = {
2840
- /** This kind is really frumious . */
2841
- FRUMIOUS : 'frumious ',
2842
- /** The less-frumious kind. */
2843
- MANXOME : 'manxome ',
2838
+ const FruitTypeEnum = {
2839
+ /** This kind is very sour . */
2840
+ SOUR : 'sour ',
2841
+ /** The less-sour kind. */
2842
+ SWEET : 'sweet ',
2844
2843
};
2845
2844
</ code > </ pre >
2846
2845
You can’t perform that action at this time.
0 commit comments