Skip to content

Commit 82af5ed

Browse files
committed
[readme] hard wraps bad, soft wraps good
1 parent fe6978d commit 82af5ed

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

readme.markdown

+5-10
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ var test = require('tape')
150150
## test([name], [opts], cb)
151151

152152
Create a new test with an optional `name` string and optional `opts` object.
153-
`cb(t)` fires with the new test object `t` once all preceding tests have finished. Tests execute serially.
153+
`cb(t)` fires with the new test object `t` once all preceding tests have finished.
154+
Tests execute serially.
154155

155156
Available `opts` options are:
156157
- opts.skip = true/false. See test.skip.
@@ -241,27 +242,21 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
241242

242243
## t.deepEqual(actual, expected, msg)
243244

244-
Assert that `actual` and `expected` have the same structure and nested values using
245-
[node's deepEqual() algorithm](https://github.com/substack/node-deep-equal)
246-
with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
245+
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
247246

248247
Aliases: `t.deepEquals()`, `t.isEquivalent()`, `t.same()`
249248

250249
## t.notDeepEqual(actual, expected, msg)
251250

252-
Assert that `actual` and `expected` do not have the same structure and nested values using
253-
[node's deepEqual() algorithm](https://github.com/substack/node-deep-equal)
254-
with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
251+
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
255252

256253
Aliases: `t.notDeepEquals`, `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
257254
`t.isNotDeepEqual()`, `t.isNotDeeply()`, `t.isNotEquivalent()`,
258255
`t.isInequivalent()`
259256

260257
## t.deepLooseEqual(actual, expected, msg)
261258

262-
Assert that `actual` and `expected` have the same structure and nested values using
263-
[node's deepEqual() algorithm](https://github.com/substack/node-deep-equal)
264-
with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
259+
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
265260

266261
Aliases: `t.looseEqual()`, `t.looseEquals()`
267262

0 commit comments

Comments
 (0)