@cryptotaxi247 / kubo / commits / 187fce7a6

fix typos in docs and comments (#10920)

Andrew Gillis committed Aug 18, 2025 at 08:43 UTC 187fce7a6db813333783a1185d0f0854fc7b1f5f
2 files changed +2 -2
docs/changelogs/v0.36.md
+1 -1
@@ -40,7 +40,7 @@ See [`HTTPRetrieval`](https://github.com/ipfs/kubo/blob/master/docs/config.md#ht
40
41 The Bitswap client now supports broadcast reduction logic, which is enabled by default. This feature significantly reduces the number of broadcast messages sent to peers, resulting in lower bandwidth usage during load spikes.
42
43 -The overall logic works by sending to non-local peers only if those peers have previously replied that they want data blocks. To minimize impact on existing workloads, by default, broadcasts are still always sent to peers on the local network, or the ones defined in `Peering.Peers`.
43 +The overall logic works by sending to non-local peers only if those peers have previously replied that they have data blocks. To minimize impact on existing workloads, by default, broadcasts are still always sent to peers on the local network, or the ones defined in `Peering.Peers`.
44
45 At Shipyard, we conducted A/B testing on our internal Kubo staging gateway with organic CID requests to `ipfs.io`. While these results may not exactly match your specific workload, the benefits proved significant enough to make this feature default. Here are the key findings:
46
test/cli/content_blocking_test.go
+1 -1
@@ -308,7 +308,7 @@ func TestContentBlocking(t *testing.T) {
308 // trustless gateway exposed over libp2p
309 // when Experimental.GatewayOverLibp2p=true
310 // (https://github.com/ipfs/kubo/blob/master/docs/experimental-features.md#http-gateway-over-libp2p)
311 - // NOTE: this type fo gateway is hardcoded to be NoFetch: it does not fetch
311 + // NOTE: this type of gateway is hardcoded to be NoFetch: it does not fetch
312 // data that is not in local store, so we only need to run it once: a
313 // simple smoke-test for allowed CID and blockedCID.
314 t.Run("GatewayOverLibp2p", func(t *testing.T) {