Skip to content

Commit ee18afb

Browse files
committed
Corrected indentation problem lines 176-185.
1 parent 839ba59 commit ee18afb

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

exercises/concept/guidos-gorgeous-lasagna/.docs/introduction.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,16 +173,16 @@ They are recommended for programs of any size where documentation is needed, and
173173
```python
174174
# An example on a user-defined function.
175175
>>> def number_to_the_power_of(number_one, number_two):
176-
"""Raise a number to an arbitrary power.
177-
178-
:param number_one: int the base number.
179-
:param number_two: int the power to raise the base number to.
180-
:return: int - number raised to power of second number
181-
182-
Takes number_one and raises it to the power of number_two, returning the result.
183-
"""
184-
185-
return number_one ** number_two
176+
"""Raise a number to an arbitrary power.
177+
178+
:param number_one: int the base number.
179+
:param number_two: int the power to raise the base number to.
180+
:return: int - number raised to power of second number
181+
182+
Takes number_one and raises it to the power of number_two, returning the result.
183+
"""
184+
185+
return number_one ** number_two
186186
...
187187

188188
>>> print(number_to_the_power_of.__doc__)

0 commit comments

Comments
 (0)