From d05c882ef6af53cc97ecf3a96cb2d6b1f39e79d0 Mon Sep 17 00:00:00 2001 From: Sydney Runkle <54324534+sydney-runkle@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:06:38 -0600 Subject: [PATCH] minor docs fixes (#125) --- pydantic_extra_types/isbn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pydantic_extra_types/isbn.py b/pydantic_extra_types/isbn.py index 26d8b8ff..c0f85f78 100644 --- a/pydantic_extra_types/isbn.py +++ b/pydantic_extra_types/isbn.py @@ -16,7 +16,7 @@ def isbn10_digit_calc(isbn: str) -> str: 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) Args: - value: The str value representing the ISBN in 10 digits. + isbn: The str value representing the ISBN in 10 digits. Returns: The calculated last digit. @@ -35,7 +35,7 @@ def isbn13_digit_calc(isbn: str) -> str: 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) Args: - value: The str value representing the ISBN in 13 digits. + isbn: The str value representing the ISBN in 13 digits. Returns: The calculated last digit.