Skip to content

Commit f1d3f16

Browse files
vallsvtacaswell
andauthored
Fix signal docstring
Co-authored-by: Thomas A Caswell <tcaswell@gmail.com>
1 parent 9cfbab6 commit f1d3f16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/cbook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def __setstate__(self, state):
199199

200200
@_api.rename_parameter("3.4", "s", "signal")
201201
def connect(self, signal, func):
202-
"""Register *func* to be called when signal *s* is generated."""
202+
"""Register *func* to be called when signal *signal* is generated."""
203203
self._func_cid_map.setdefault(signal, {})
204204
proxy = _weak_or_strong_ref(func, self._remove_proxy)
205205
if proxy in self._func_cid_map[signal]:

0 commit comments

Comments
 (0)