Skip to content

Commit 35c6c08

Browse files
author
axross
committed
Revert "Remove unneeded whitespaces in README"
This reverts commit 3ed9b91.
1 parent 77a2bbb commit 35c6c08

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readme.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ var test = require('tape');
1515

1616
test('timing test', function (t) {
1717
t.plan(2);
18-
18+
1919
t.equal(typeof Date.now, 'function');
2020
var start = Date.now();
21-
21+
2222
setTimeout(function () {
2323
t.equal(Date.now() - start, 100);
2424
}, 100);
@@ -116,13 +116,13 @@ var test = require('tape')
116116

117117
## test([name], [opts], cb)
118118

119-
Create a new test with an optional `name` string and optional `opts` object.
119+
Create a new test with an optional `name` string and optional `opts` object.
120120
`cb(t)` fires with the new test object `t` once all preceeding tests have
121121
finished. Tests execute serially.
122122

123123
Available `opts` options are:
124124
- opts.skip = true/false. See test.skip.
125-
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
125+
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
126126
See test.timeoutAfter.
127127

128128
If you forget to `t.plan()` out how many assertions you are going to run and you
@@ -156,7 +156,7 @@ Generate a passing assertion with a message `msg`.
156156
Automatically timeout the test after X ms.
157157

158158
## t.skip(msg)
159-
159+
160160
Generate an assertion that will be skipped over.
161161

162162
## t.ok(value, msg)

0 commit comments

Comments
 (0)