Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 844bf18

Browse files
dasilvacontindaviddias
authored andcommitted
Fix 404 links to API docs (#1051)
Please check for other occurrences around the repo, might not be the only one.
1 parent 319c1c9 commit 844bf18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ipfs-101/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ Running the code above gets you:
3636
IPFS Version: 0.25.0
3737
```
3838

39-
Now lets make it more interesting and add a file to IPFS. We can do it by adding another async call to the series that uses the `node.files.add` call. You can learn about IPFS API for files at [interface-ipfs-core](https://github.com/ipfs/interface-ipfs-core/tree/master/API/files).
39+
Now lets make it more interesting and add a file to IPFS. We can do it by adding another async call to the series that uses the `node.files.add` call. You can learn about IPFS API for files at [interface-ipfs-core](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md).
4040

4141
```JavaScript
4242
// Create the File to add, a file consists of a path + content. More details on
43-
// https://github.com/ipfs/interface-ipfs-core/tree/master/API/files
43+
// https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md
4444
(cb) => node.files.add({
4545
path: 'hello.txt',
4646
content: Buffer.from('Hello World')

0 commit comments

Comments
 (0)