Skip to content

Commit 40ab716

Browse files
authored
chore: fix typos (#1253)
1 parent 1ed232c commit 40ab716

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A major release `N` implies the previous release `N-1` will no longer receive up
5454
## 1.2.0
5555

5656
- Fix for `AWSLambda` Integration to handle other path formats for function initial handler #1139
57-
- Fix for worker to set deamon attribute instead of deprecated setDaemon method #1093
57+
- Fix for worker to set daemon attribute instead of deprecated setDaemon method #1093
5858
- Fix for `bottle` Integration that discards `-dev` for version extraction #1085
5959
- Fix for transport that adds a unified hook for capturing metrics about dropped events #1100
6060
- Add `Httpx` Integration #1119

sentry_sdk/integrations/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def setup_once():
6666
version = tuple(map(int, AIOHTTP_VERSION.split(".")[:2]))
6767
except (TypeError, ValueError):
6868
raise DidNotEnable(
69-
"AIOHTTP version unparseable: {}".format(AIOHTTP_VERSION)
69+
"AIOHTTP version unparsable: {}".format(AIOHTTP_VERSION)
7070
)
7171

7272
if version < (3, 4):

sentry_sdk/tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ def _set_initial_sampling_decision(self, sampling_context):
617617
618618
1. If a sampling decision is passed to `start_transaction`
619619
(`start_transaction(name: "my transaction", sampled: True)`), that
620-
decision will be used, regardlesss of anything else
620+
decision will be used, regardless of anything else
621621
622622
2. If `traces_sampler` is defined, its decision will be used. It can
623623
choose to keep or ignore any parent sampling decision, or use the

sentry_sdk/tracing_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
# of the form `sentry=xxxx`
6666
SENTRY_TRACESTATE_ENTRY_REGEX = re.compile(
6767
# either sentry is the first entry or there's stuff immediately before it,
68-
# ending in a commma (this prevents matching something like `coolsentry=xxx`)
68+
# ending in a comma (this prevents matching something like `coolsentry=xxx`)
6969
"(?:^|.+,)"
7070
# sentry's part, not including the potential comma
7171
"(sentry=[^,]*)"

tests/test_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def intercepting_fetch(*args, **kwargs):
279279
client.flush()
280280

281281
# this goes out with an extra envelope because it's flushed after the last item
282-
# that is normally in the queue. This is quite funny in a way beacuse it means
282+
# that is normally in the queue. This is quite funny in a way because it means
283283
# that the envelope that caused its own over quota report (an error with an
284284
# attachment) will include its outcome since it's pending.
285285
assert len(capturing_server.captured) == 1

0 commit comments

Comments
 (0)