Skip to content

Commit b2fb7f2

Browse files
authored
Merge pull request #249 from ipfs-shipyard/fix/typo
fix: obvious typo
2 parents 26ef87a + cb2e333 commit b2fb7f2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/java/io/ipfs/api/IPFS.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,9 @@ public List<Multihash> update(Multihash existing, Multihash modified, boolean un
294294
.map(x -> Cid.decode((String) x))
295295
.collect(Collectors.toList());
296296
}
297-
public Map verify(boolean verbose, boolean quite) throws IOException {
298-
return retrieveMap("pin/verify?verbose=" + verbose + "&quite=" + quite);
297+
298+
public Map verify(boolean verbose, boolean quiet) throws IOException {
299+
return retrieveMap("pin/verify?verbose=" + verbose + "&quiet=" + quiet);
299300
}
300301
}
301302

0 commit comments

Comments
 (0)