Skip to content

Commit d5b580f

Browse files
clsungc24t
authored andcommitted
Fix typo, wording (open-telemetry#289)
1 parent b1c28bb commit d5b580f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are looking for someone to help you find a starting point and be a resour
1919
Gitter and find a buddy!
2020

2121
1. Join [Gitter.im](https://gitter.im) and join our [chat room](https://gitter.im/open-telemetry/opentelemetry-python).
22-
2. Post in the room with an introduction to yourself, what area you are interested in (checks issues marked "Help Wanted"),
22+
2. Post in the room with an introduction to yourself, what area you are interested in (check issues marked "Help Wanted"),
2323
and say you are looking for a buddy. We will match you with someone who has experience in that area.
2424

2525
Your OpenTelemetry buddy is your resource to talk to directly on all aspects of contributing to OpenTelemetry: providing
@@ -37,7 +37,7 @@ You can run:
3737
under multiple Python versions
3838
- `tox -e docs` to regenerate the API docs
3939
- `tox -e test-api` and `tox -e test-sdk` to run the API and SDK unit tests
40-
- `tox -e py37-test-api` to e.g. run the the API unit tests under a specific
40+
- `tox -e py37-test-api` to e.g. run the API unit tests under a specific
4141
Python version
4242
- `tox -e lint` to run lint checks on all code
4343

@@ -115,7 +115,7 @@ It's especially valuable to read through the [library guidelines](https://github
115115
OpenTelemetry is an evolving specification, one where the desires and
116116
use cases are clear, but the method to satisfy those uses cases are not.
117117

118-
As such, Contributions should provide functionality and behavior that
118+
As such, contributions should provide functionality and behavior that
119119
conforms to the specification, but the interface and structure is flexible.
120120

121121
It is preferable to have contributions follow the idioms of the language

ext/opentelemetry-ext-jaeger/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gRPC is still not supported by this implementation.
2626

2727

2828
.. _Jaeger: https://www.jaegertracing.io/
29-
.. _OpenTelemetry: https://github.com/opentelemetry/opentelemetry-python/
29+
.. _OpenTelemetry: https://github.com/open-telemetry/opentelemetry-python/
3030

3131
.. code:: python
3232

ext/opentelemetry-ext-wsgi/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ OpenTelemetry WSGI Middleware
33

44
|pypi|
55

6-
.. |pypi| image:: https://badge.fury.io/py/opentelemetry-wsgi.svg
7-
:target: https://pypi.org/project/opentelemetry-opentracing-wsgi/
6+
.. |pypi| image:: https://badge.fury.io/py/opentelemetry-ext-wsgi.svg
7+
:target: https://pypi.org/project/opentelemetry-ext-wsgi/
88

99

1010
This library provides a WSGI middleware that can be used on any WSGI framework
@@ -15,7 +15,7 @@ Installation
1515

1616
::
1717

18-
pip install opentelemetry-opentracing-wsgi
18+
pip install opentelemetry-ext-wsgi
1919

2020

2121
Usage (Flask)

opentelemetry-api/src/opentelemetry/context/propagation/tracecontexthttptextformat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
_T = typing.TypeVar("_T")
2222

2323
# Keys and values are strings of up to 256 printable US-ASCII characters.
24-
# Implementations should conform to the the `W3C Trace Context - Tracestate`_
24+
# Implementations should conform to the `W3C Trace Context - Tracestate`_
2525
# spec, which describes additional restrictions on valid field values.
2626
#
2727
# .. _W3C Trace Context - Tracestate:

opentelemetry-api/src/opentelemetry/trace/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class SpanKind(enum.Enum):
135135
#: path latency relationship between producer and consumer spans.
136136
PRODUCER = 3
137137

138-
#: Indicates that the span describes consumer receiving a message from a
138+
#: Indicates that the span describes a consumer receiving a message from a
139139
#: broker. Unlike client and server, there is usually no direct critical
140140
#: path latency relationship between producer and consumer spans.
141141
CONSUMER = 4
@@ -285,7 +285,7 @@ class TraceState(typing.Dict[str, str]):
285285
"""A list of key-value pairs representing vendor-specific trace info.
286286
287287
Keys and values are strings of up to 256 printable US-ASCII characters.
288-
Implementations should conform to the the `W3C Trace Context - Tracestate`_
288+
Implementations should conform to the `W3C Trace Context - Tracestate`_
289289
spec, which describes additional restrictions on valid field values.
290290
291291
.. _W3C Trace Context - Tracestate:

0 commit comments

Comments
 (0)