File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -143,10 +143,10 @@ class ExampleClass {}
143
143
const ExampleAttribute = null ;
144
144
145
145
/**
146
- * @param {Number } p1
146
+ * @param {number } p1
147
147
* @param {Object } p2
148
- * @param {String } p2.foo
149
- * @param {String } p2.bar
148
+ * @param {string } p2.foo
149
+ * @param {string } p2.bar
150
150
*/
151
151
function destructuredParams ( p1 , { foo, bar} ) { }
152
152
Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ def test_autofunction_destructured_params(self):
67
67
'autofunction_destructured_params' ,
68
68
u'destructuredParams(p1, p2)\n \n '
69
69
' Arguments:\n '
70
- ' * **p1** (*Number *) --\n \n '
70
+ ' * **p1** (*number *) --\n \n '
71
71
' * **p2** (*Object*) --\n \n '
72
- ' * **p2.foo** (*String *) --\n \n '
73
- ' * **p2.bar** (*String *) --\n ' )
72
+ ' * **p2.foo** (*string *) --\n \n '
73
+ ' * **p2.bar** (*string *) --\n ' )
74
74
75
75
def test_autofunction_default_values (self ):
76
76
"""Make sure params default values appear in the function definition,
You can’t perform that action at this time.
0 commit comments