diff options
author | Michael Haas <micha2718l@gmail.com> | 2020-01-19 10:29:42 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2020-01-19 10:29:42 (GMT) |
commit | 558f07891170fe5173f277d3749e92d844de0a27 (patch) | |
tree | 7ae3161c9b56535f7ee3a50cc82d53de499b5920 /Lib/webbrowser.py | |
parent | cd7db76a636c218b2d81d3526eb435cfae61f212 (diff) | |
download | cpython-558f07891170fe5173f277d3749e92d844de0a27.zip cpython-558f07891170fe5173f277d3749e92d844de0a27.tar.gz cpython-558f07891170fe5173f277d3749e92d844de0a27.tar.bz2 |
Fix typo from base to based (GH-18055)
Diffstat (limited to 'Lib/webbrowser.py')
-rwxr-xr-x | Lib/webbrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 0af36c4..1ef179a 100755 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -87,7 +87,7 @@ def open_new_tab(url): def _synthesize(browser, *, preferred=False): - """Attempt to synthesize a controller base on existing controllers. + """Attempt to synthesize a controller based on existing controllers. This is useful to create a controller when a user specifies a path to an entry in the BROWSER environment variable -- we can copy a general |