From aef20d2d9f84a50b2f90d0908e7eead83f366aca Mon Sep 17 00:00:00 2001 From: Daniel Szoke <7881302+szokeasaurusrex@users.noreply.github.com> Date: Thu, 25 Apr 2024 15:04:25 +0200 Subject: [PATCH] ref(metrics): Fix comment typo (#2992) --- sentry_sdk/metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry_sdk/metrics.py b/sentry_sdk/metrics.py index 637d519afa..75ba24a6b6 100644 --- a/sentry_sdk/metrics.py +++ b/sentry_sdk/metrics.py @@ -284,7 +284,7 @@ def _encode_metrics(flushable_buckets): out = io.BytesIO() _write = out.write - # Note on sanetization: we intentionally sanetize in emission (serialization) + # Note on sanitization: we intentionally sanitize in emission (serialization) # and not during aggregation for performance reasons. This means that the # envelope can in fact have duplicate buckets stored. This is acceptable for # relay side emission and should not happen commonly.