Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit f54422d

Browse files
author
Alan Shaw
authored
fix: addFromURL case (#415)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 80843ce commit f54422d

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
### Features
5555

56-
* move regular files api to top level, add addFromFs and addFromUrl ([#378](https://github.com/ipfs/interface-ipfs-core/issues/378)) ([3dc7278](https://github.com/ipfs/interface-ipfs-core/commit/3dc7278))
56+
* move regular files api to top level, add addFromFs and addFromURL ([#378](https://github.com/ipfs/interface-ipfs-core/issues/378)) ([3dc7278](https://github.com/ipfs/interface-ipfs-core/commit/3dc7278))
5757

5858

5959

@@ -1073,6 +1073,3 @@ Signed-off-by: Alan Shaw <alan@tableflip.io>
10731073
### Bug Fixes
10741074

10751075
* remove superfluous console.logs ([442ea74](https://github.com/ipfs/interface-ipfs-core/commit/442ea74))
1076-
1077-
1078-

SPEC/FILES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- [addReadableStream](#addreadablestream)
88
- [addPullStream](#addpullstream)
99
- [addFromFs](#addfromfs)
10-
- [addFromUrl](#addfromurl)
10+
- [addFromURL](#addfromurl)
1111
- [addFromStream](#addfromstream)
1212
- [cat](#cat)
1313
- [catReadableStream](#catreadablestream)
@@ -259,7 +259,7 @@ ipfs.addFromFs('path/to/a/folder', { recursive: true , ignore: ['subfolder/to/ig
259259
]
260260
```
261261

262-
#### `addFromUrl`
262+
#### `addFromURL`
263263

264264
> Add a file from a URL to IPFS
265265

js/src/files-regular/add-from-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = (createCommon, options) => {
1414
const it = getIt(options)
1515
const common = createCommon()
1616

17-
describe('.addFromUrl', function () {
17+
describe('.addFromURL', function () {
1818
this.timeout(40 * 1000)
1919

2020
let ipfs

js/src/files-regular/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const tests = {
77
addReadableStream: require('./add-readable-stream'),
88
addPullStream: require('./add-pull-stream'),
99
addFromStream: require('./add-from-stream'),
10-
addFromUrl: require('./add-from-url'),
10+
addFromURL: require('./add-from-url'),
1111
addFromFs: require('./add-from-fs'),
1212
cat: require('./cat'),
1313
catReadableStream: require('./cat-readable-stream'),

0 commit comments

Comments
 (0)