Skip to content

Commit

Permalink
chore: fix typos (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Jul 29, 2024
1 parent 08c1787 commit 0190b70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down
2 changes: 1 addition & 1 deletion bitswap/network/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bitswap/network/internal/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0190b70

Please sign in to comment.