From 5536cf3bf10e12e817b11435be03d406e5b6ebba Mon Sep 17 00:00:00 2001 From: Matthew Wear Date: Tue, 30 Mar 2021 14:54:38 -0700 Subject: [PATCH] docs: fix typos --- README.md | 2 +- packages/opentelemetry-propagator-b3/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 574f000eab0..3f3d62ab790 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ To request automatic tracing support for a module not on this list, please [file ### 0.18.0 to 0.19.0 -- The `@opentelemetry/propagator-b3` package previously exported three propagators: `B3Propagator`,`B3SinglePropagator`, and `B3MultiPropagator`, but now only exports the `B3Propagator`. It extracts b3 context in single and multi header encodings, and injects context using the single-header encoding by default, but can be configured to inject context using the multi-header endcoding during construction: `new B3Propagator({ injectEncoding: B3InjectEncoding.MULTI_HEADER })`. If you were previously using the `B3SinglePropagator` or `B3MultiPropagator` directly, you should update your code to use the `B3Propagator` with the appropriate configuration. See the [readme](./packages/opentelemetry-propagator-b3/readme.md) for full details and usage. +- The `@opentelemetry/propagator-b3` package previously exported three propagators: `B3Propagator`,`B3SinglePropagator`, and `B3MultiPropagator`, but now only exports the `B3Propagator`. It extracts b3 context in single and multi-header encodings, and injects context using the single-header encoding by default, but can be configured to inject context using the multi-header endcoding during construction: `new B3Propagator({ injectEncoding: B3InjectEncoding.MULTI_HEADER })`. If you were previously using the `B3SinglePropagator` or `B3MultiPropagator` directly, you should update your code to use the `B3Propagator` with the appropriate configuration. See the [readme](./packages/opentelemetry-propagator-b3/readme.md) for full details and usage. ### 0.17.0 to 0.18.0 diff --git a/packages/opentelemetry-propagator-b3/README.md b/packages/opentelemetry-propagator-b3/README.md index 5b45b088d57..26ad1c4bba4 100644 --- a/packages/opentelemetry-propagator-b3/README.md +++ b/packages/opentelemetry-propagator-b3/README.md @@ -96,7 +96,7 @@ api.propagation.setGlobalPropagator( ### B3 Single and Multi-Header Configuration The B3Propagator always extracts both the single and multi-header b3 encodings. -If you need to inject both encoding this can accomplished using a composite +If you need to inject both encodings this can accomplished using a composite propagator. ```javascript