Skip to content

Commit 7b7efa7

Browse files
committed
fix typo
1 parent 7eb840d commit 7b7efa7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Utils.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,16 @@ class Utils {
135135
* {
136136
* a: [true, false],
137137
* b: [1, 2],
138-
* c: ["x"]
138+
* c: ['x']
139139
* }
140140
* ```
141141
* permutates to:
142142
* ```
143143
* [
144-
* { a: true, b: 1, c: x },
145-
* { a: true, b: 2, c: x },
146-
* { a: false, b: 1, c: x },
147-
* { a: false, b: 2, c: x }
144+
* { a: true, b: 1, c: 'x' },
145+
* { a: true, b: 2, c: 'x' },
146+
* { a: false, b: 1, c: 'x' },
147+
* { a: false, b: 2, c: 'x' }
148148
* ]
149149
* ```
150150
* @param {Object} object The object to permutate.

0 commit comments

Comments
 (0)