Skip to content

Commit cb2e333

Browse files
committed
fix: obvious typo
1 parent 26ef87a commit cb2e333

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)