Skip to content

Commit ed44d8b

Browse files
dbiebercopybara-github
authored andcommitted
Fix typos in test component docstrings.
PiperOrigin-RevId: 379999792 Change-Id: I2594db4540cfe20820951bae479d16c167ba391a
1 parent c1266d0 commit ed44d8b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fire/test_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def double(self, count=0):
9898
count: Input number that you want to double.
9999
100100
Returns:
101-
A number that is the double of count.s
101+
A number that is the double of count.
102102
"""
103103
return 2 * count
104104

fire/test_components_py3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def double(self, count: float) -> float:
6767
count: Input number that you want to double.
6868
6969
Returns:
70-
A number that is the double of count.s
70+
A number that is the double of count.
7171
"""
7272
return 2 * count
7373

@@ -89,7 +89,7 @@ def double(self, count: float = 0) -> float:
8989
count: Input number that you want to double.
9090
9191
Returns:
92-
A number that is the double of count.s
92+
A number that is the double of count.
9393
"""
9494
return 2 * count
9595

0 commit comments

Comments
 (0)