Skip to content

Commit 9cda4e3

Browse files
docs: fix sumset docstring
Signed-off-by: hariomloharapps <hariomlohar.new@gmail.com>
1 parent f5988cc commit 9cda4e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

maths/sumset.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
def sumset(set_a: set, set_b: set) -> set:
1212
"""
13-
:param first set: a set of numbers
14-
:param second set: a set of numbers
15-
:return: the nth number in Sylvester's sequence
13+
:param set_a: a set of numbers
14+
:param set_b: a set of numbers
15+
:return: the sumset of set_a and set_b (all pairwise sums a + b)
1616
1717
>>> sumset({1, 2, 3}, {4, 5, 6})
1818
{5, 6, 7, 8, 9}

0 commit comments

Comments
 (0)