Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changelog/5658.changed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`opentelemetry-sdk`: fix typos in SpanLimits docstring
4 changes: 2 additions & 2 deletions opentelemetry-sdk/src/opentelemetry/sdk/trace/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,9 @@ def _format_links(links: Sequence[trace_api.Link]) -> list[dict[str, Any]]:


class SpanLimits:
"""The limits that should be enforce on recorded data such as events, links, attributes etc.
"""The limits that should be enforced on recorded data such as events, links, attributes etc.

This class does not enforce any limits itself. It only provides an a way read limits from env,
This class does not enforce any limits itself. It only provides a way to read limits from env,
default values and from user provided arguments.

All limit arguments must be either a non-negative integer, ``None`` or ``SpanLimits.UNSET``.
Expand Down