Skip to content

Commit 9371e41

Browse files
Fix README anchors
1 parent 06916fd commit 9371e41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm install hacker-news-api
1111

1212
## Examples
1313

14-
[Some methods](#Callback-only) only require a callback.
14+
[Some methods](#callback-only) only require a callback.
1515

1616
```js
1717
var hn = require('hacker-news-api');
@@ -22,7 +22,7 @@ hn.getLastPolls(function (error, data) {
2222
});
2323
```
2424

25-
[Some methods](#String-and-callback) require a string and a callback.
25+
[Some methods](#string-and-callback) require a string and a callback.
2626

2727
```js
2828
var hn = require('hacker-news-api');
@@ -33,7 +33,7 @@ hn.getUserStories('pg', function (error, data) {
3333
});
3434
```
3535

36-
[Some methods](#Object-and-callback) require an object and a callback.
36+
[Some methods](#object-and-callback) require an object and a callback.
3737
```js
3838
var hn = require('hacker-news-api');
3939

0 commit comments

Comments
 (0)