Skip to content

Commit 2ac384a

Browse files
committed
Fix markdown (#177 review comment)
1 parent d5a5695 commit 2ac384a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/underscore.object.selectors.js.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -223,21 +223,21 @@ _.selectKeys(philosopherCities, ["Plato", "Plotinus"]);
223223

224224
#### omitPath
225225

226-
**Signature:** `_.omitPath(obj:Object, ks:String|Array);
226+
**Signature:** `_.omitPath(obj:Object, ks:String|Array)`
227227

228228
Returns a copy of `obj` excluding the value represented by the `ks` path.
229229
Path may be given as an array or as a dot-separated string.
230230
If the path contains an array, the value of the path will be removed from all the array elements.
231231

232232
```javascript
233233
var test = {
234-
foo: true,
235-
bar: false,
236-
baz: 42,
234+
foo: true,
235+
bar: false,
236+
baz: 42,
237237
dada: {
238-
carlos: {
239-
pepe: 9
240-
},
238+
carlos: {
239+
pepe: 9
240+
},
241241
pedro: 'pedro'
242242
}
243243
};

0 commit comments

Comments
 (0)