From 9cda4e3ac3765d4b2aed490b56ad23c68d39f6f5 Mon Sep 17 00:00:00 2001 From: hariomloharapps Date: Sat, 8 Aug 2026 22:20:37 +0530 Subject: [PATCH] docs: fix sumset docstring Signed-off-by: hariomloharapps --- maths/sumset.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maths/sumset.py b/maths/sumset.py index fa18f9e24b4c..6bfb8bfd25eb 100644 --- a/maths/sumset.py +++ b/maths/sumset.py @@ -10,9 +10,9 @@ def sumset(set_a: set, set_b: set) -> set: """ - :param first set: a set of numbers - :param second set: a set of numbers - :return: the nth number in Sylvester's sequence + :param set_a: a set of numbers + :param set_b: a set of numbers + :return: the sumset of set_a and set_b (all pairwise sums a + b) >>> sumset({1, 2, 3}, {4, 5, 6}) {5, 6, 7, 8, 9}