diff --git a/README.md b/README.md
index bd824f512..ed8ac109f 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ Boxo includes high-quality components useful for interacting with IPFS protocols
 - Interacting with public and private IPFS networks
 - Working with content-addressed data
 
-Boxo aims to provide a cohesive interface into these components. Note that not all of the underlying components necessarily reside in this respository.
+Boxo aims to provide a cohesive interface into these components. Note that not all of the underlying components necessarily reside in this repository.
 
 ### Does Boxo == IPFS?
 
diff --git a/bitswap/network/interface.go b/bitswap/network/interface.go
index 962bc2588..6ea0fc525 100644
--- a/bitswap/network/interface.go
+++ b/bitswap/network/interface.go
@@ -19,7 +19,7 @@ var (
 	ProtocolBitswapNoVers = internal.ProtocolBitswapNoVers
 	// ProtocolBitswapOneZero is the prefix for the legacy bitswap protocol
 	ProtocolBitswapOneZero = internal.ProtocolBitswapOneZero
-	// ProtocolBitswapOneOne is the the prefix for version 1.1.0
+	// ProtocolBitswapOneOne is the prefix for version 1.1.0
 	ProtocolBitswapOneOne = internal.ProtocolBitswapOneOne
 	// ProtocolBitswap is the current version of the bitswap protocol: 1.2.0
 	ProtocolBitswap = internal.ProtocolBitswap
diff --git a/bitswap/network/internal/default.go b/bitswap/network/internal/default.go
index 13f4936a8..ee5a8974e 100644
--- a/bitswap/network/internal/default.go
+++ b/bitswap/network/internal/default.go
@@ -9,7 +9,7 @@ var (
 	ProtocolBitswapNoVers protocol.ID = "/ipfs/bitswap"
 	// ProtocolBitswapOneZero is the prefix for the legacy bitswap protocol
 	ProtocolBitswapOneZero protocol.ID = "/ipfs/bitswap/1.0.0"
-	// ProtocolBitswapOneOne is the the prefix for version 1.1.0
+	// ProtocolBitswapOneOne is the prefix for version 1.1.0
 	ProtocolBitswapOneOne protocol.ID = "/ipfs/bitswap/1.1.0"
 	// ProtocolBitswap is the current version of the bitswap protocol: 1.2.0
 	ProtocolBitswap protocol.ID = "/ipfs/bitswap/1.2.0"
diff --git a/docs/tracing.md b/docs/tracing.md
index c43c10aed..868b68d95 100644
--- a/docs/tracing.md
+++ b/docs/tracing.md
@@ -9,7 +9,7 @@ for the `OTEL_TRACES_EXPORTER` environment variables. Therefore, we provide some
 helper functions under [`boxo/tracing`](../tracing/) to support these.
 
 In this document, we document the quirks of our custom support for the `OTEL_TRACES_EXPORTER`,
-as well as examples on how to use tracing, create traceable headers, and how
+as well as examples of how to use tracing, create traceable headers, and how
 to use the Jaeger UI. The [Gateway examples](../examples/gateway/) fully support Tracing.
 
 - [Environment Variables](#environment-variables)