From f81b6c2914b19f78d6c32e992ee284795c352a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaya=20G=C3=B6kalp?= Date: Fri, 5 Jul 2024 15:24:23 -0700 Subject: [PATCH] fix: typo in comment for ipfs fetching in forc-pkg (#6236) ## Description Curretnly CI is broken as spellcheck is finding a new error it used to not found. This pr fixes it to get CI passing again. --- forc-pkg/src/source/ipfs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forc-pkg/src/source/ipfs.rs b/forc-pkg/src/source/ipfs.rs index 1a1c5e914fc..1391348834c 100644 --- a/forc-pkg/src/source/ipfs.rs +++ b/forc-pkg/src/source/ipfs.rs @@ -137,7 +137,7 @@ impl Cid { /// Using local node, fetches the content described by this cid. async fn fetch_with_client(&self, ipfs_client: &IpfsClient, dst: &Path) -> Result<()> { let cid_path = format!("/ipfs/{}", self.0); - // Since we are fetching packages as a fodler, they are returned as a tar archive. + // Since we are fetching packages as a folder, they are returned as a tar archive. let bytes = ipfs_client .get(&cid_path) .map_ok(|chunk| chunk.to_vec())