Skip to content

Commit

Permalink
Merge pull request #1 from mateusoliveira43/fix/doc-examples-rendering
Browse files Browse the repository at this point in the history
fix: documentation examples rendering
  • Loading branch information
CarduCaldeira authored Jun 2, 2024
2 parents 4ceb280 + 517810c commit 20e08ce
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions source/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ def add(a:float, b:float) -> float:
"""
Adiciona dois números e retorna o resultado.
Exemplo:
>>> add(2, 3)
5
>>> add(-1, 1)
0
>>> add(0, 0)
0
Examples:
>>> add(2, 3)
5
>>> add(-1, 1)
0
>>> add(0, 0)
0
Args:
a (float): Numero a ser somado.
Expand Down

0 comments on commit 20e08ce

Please sign in to comment.