Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

CONTRIBUTING.md: Fix mistake in doctest ;-) (#1266)

* CONTRIBUTING.md: Fix mistake in doctest ;-)

* Update CONTRIBUTING.md
  • Loading branch information...
cclauss authored and poyea committed Oct 5, 2019
1 parent 9eac17a commit 6ebd899c0145e8a4655c9a0d476f19f5f4d7ba2f
Showing with 3 additions and 3 deletions.
  1. +3 −3 CONTRIBUTING.md
@@ -82,11 +82,11 @@ We want your work to be readable by others; therefore, we encourage you to note
"""
This function returns the sum of two integers a and b
Return: a + b
>>> sum(2, 2)
>>> sumab(2, 2)
4
>>> sum(-2, 3)
>>> sumab(-2, 3)
1
>>> sum(4.9, 6.1)
>>> sumab(4.9, 5.1)
10.0
"""
return a + b

0 comments on commit 6ebd899

Please sign in to comment.
You can’t perform that action at this time.