Skip to content

Commit 2856793

Browse files
committed
doc: fix malformed docstring
1 parent 1a6ca6c commit 2856793

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scim2_models/messages/search_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class SortOrder(str, Enum):
4747
@field_validator("start_index")
4848
@classmethod
4949
def start_index_floor(cls, value: int | None) -> int | None:
50-
"""According to :rfc:`RFC7644 §3.4.2 <7644#section-3.4.2.4>, start_index values less than 1 are interpreted as 1.
50+
"""According to :rfc:`RFC7644 §3.4.2 <7644#section-3.4.2.4>`, start_index values less than 1 are interpreted as 1.
5151
5252
A value less than 1 SHALL be interpreted as 1.
5353
"""
@@ -60,7 +60,7 @@ def start_index_floor(cls, value: int | None) -> int | None:
6060
@field_validator("count")
6161
@classmethod
6262
def count_floor(cls, value: int | None) -> int | None:
63-
"""According to :rfc:`RFC7644 §3.4.2 <7644#section-3.4.2.4>, count values less than 0 are interpreted as 0.
63+
"""According to :rfc:`RFC7644 §3.4.2 <7644#section-3.4.2.4>`, count values less than 0 are interpreted as 0.
6464
6565
A negative value SHALL be interpreted as 0.
6666
"""

0 commit comments

Comments
 (0)