Skip to content

Commit

Permalink
Fix typos in test component docstrings.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 379999792
Change-Id: I2594db4540cfe20820951bae479d16c167ba391a
  • Loading branch information
dbieber authored and copybara-github committed Jun 17, 2021
1 parent c1266d0 commit ed44d8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fire/test_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def double(self, count=0):
count: Input number that you want to double.
Returns:
A number that is the double of count.s
A number that is the double of count.
"""
return 2 * count

Expand Down
4 changes: 2 additions & 2 deletions fire/test_components_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def double(self, count: float) -> float:
count: Input number that you want to double.
Returns:
A number that is the double of count.s
A number that is the double of count.
"""
return 2 * count

Expand All @@ -89,7 +89,7 @@ def double(self, count: float = 0) -> float:
count: Input number that you want to double.
Returns:
A number that is the double of count.s
A number that is the double of count.
"""
return 2 * count

Expand Down

0 comments on commit ed44d8b

Please sign in to comment.