From 4f261b29c9f861cf2438e651d3ba123dde0507c4 Mon Sep 17 00:00:00 2001 From: Vitalii Lozytskyi Date: Sun, 10 Mar 2024 22:02:36 +0100 Subject: [PATCH] Cosmetic changes after the review remarks. --- src.docs/content/articles/py-params.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src.docs/content/articles/py-params.rst b/src.docs/content/articles/py-params.rst index 5af7dfe8..ab4b79c0 100644 --- a/src.docs/content/articles/py-params.rst +++ b/src.docs/content/articles/py-params.rst @@ -243,8 +243,7 @@ Summary * The *__defaults__* attribute stores default values of positional parameters and is mutable, allowing direct assignment. * An asterisk followed by a name (`*var`) packs positional arguments into a tuple, while a double asterisk followed by a name (`**kwvar`) packs keyword arguments into a dictionary. * Keyword arguments always follow positional arguments, with defaults filling in omitted values. -* The use of an asterisk and a slash together could be described in the following way: - `` / `` * `` +* The use of an asterisk and a slash together could be described in the following way: `` / `` * ``. * The *__kwdefaults__* attribute stores default values of keyword-only parameters that defined after the asterisk. .. Links