diff options
author | Xtreak <tir.karthi@gmail.com> | 2019-06-02 23:12:33 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-06-02 23:12:33 (GMT) |
commit | 0d70227e419ab78c44d81b4ea6ae8aaf769470e6 (patch) | |
tree | 7fcafd5e2f1291c61989b119eff03ce7113bc928 /Lib/pstats.py | |
parent | e584cbff1ea78e700cf9943d50467e3b58301ccc (diff) | |
download | cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.zip cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.gz cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.bz2 |
Fix typos in docs and docstrings (GH-13745)
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index b7649eb..4b419a8 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -632,12 +632,12 @@ if __name__ == '__main__': print("", file=self.stream) return 1 def help_EOF(self): - print("Leave the profile brower.", file=self.stream) + print("Leave the profile browser.", file=self.stream) def do_quit(self, line): return 1 def help_quit(self): - print("Leave the profile brower.", file=self.stream) + print("Leave the profile browser.", file=self.stream) def do_read(self, line): if line: |