Skip to content

Commit 3ed9b91

Browse files
author
axross
committed
Remove unneeded whitespaces in README
1 parent aaea6cf commit 3ed9b91

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);
@@ -114,13 +114,13 @@ var test = require('tape')
114114

115115
## test([name], [opts], cb)
116116

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

121121
Available `opts` options are:
122122
- opts.skip = true/false. See test.skip.
123-
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
123+
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
124124
See test.timeoutAfter.
125125

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

156156
## t.skip(msg)
157-
157+
158158
Generate an assertion that will be skipped over.
159159

160160
## t.ok(value, msg)

0 commit comments

Comments
 (0)