From ed44d8b801fc24e40729abef11b2dcbf6588d361 Mon Sep 17 00:00:00 2001 From: David Bieber Date: Thu, 17 Jun 2021 11:02:53 -0700 Subject: [PATCH] Fix typos in test component docstrings. PiperOrigin-RevId: 379999792 Change-Id: I2594db4540cfe20820951bae479d16c167ba391a --- fire/test_components.py | 2 +- fire/test_components_py3.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fire/test_components.py b/fire/test_components.py index eee9a07c..027a6b19 100644 --- a/fire/test_components.py +++ b/fire/test_components.py @@ -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 diff --git a/fire/test_components_py3.py b/fire/test_components_py3.py index 3c21f4ba..b6c78c84 100644 --- a/fire/test_components_py3.py +++ b/fire/test_components_py3.py @@ -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 @@ -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