Skip to content

Commit d05c882

Browse files
minor docs fixes (#125)
1 parent 634487f commit d05c882

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydantic_extra_types/isbn.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def isbn10_digit_calc(isbn: str) -> str:
1616
Calc a ISBN-10 last digit from the provided str value. More information of validation algorithm on [Wikipedia](https://en.wikipedia.org/wiki/ISBN#Check_digits)
1717
1818
Args:
19-
value: The str value representing the ISBN in 10 digits.
19+
isbn: The str value representing the ISBN in 10 digits.
2020
2121
Returns:
2222
The calculated last digit.
@@ -35,7 +35,7 @@ def isbn13_digit_calc(isbn: str) -> str:
3535
Calc a ISBN-13 last digit from the provided str value. More information of validation algorithm on [Wikipedia](https://en.wikipedia.org/wiki/ISBN#Check_digits)
3636
3737
Args:
38-
value: The str value representing the ISBN in 13 digits.
38+
isbn: The str value representing the ISBN in 13 digits.
3939
4040
Returns:
4141
The calculated last digit.

0 commit comments

Comments
 (0)