From 2d4993d3b70c5a9b67474280580e1a96fbc43bff Mon Sep 17 00:00:00 2001 From: "Tobias V. Langhoff" Date: Tue, 9 Oct 2018 20:13:24 +0200 Subject: [PATCH 1/2] Fix typo in signal docs "interesing" -> "interesting" --- docs/signal.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/signal.rst b/docs/signal.rst index 22be171..4160258 100644 --- a/docs/signal.rst +++ b/docs/signal.rst @@ -11,7 +11,7 @@ A simple yet effective implementation of `Signals and Slots bound to signals. When a *signal* is *emitted*, all registered functions will be invoked. Simple as that. -``hump.signal`` makes things a little more interesing by allowing to emit all +``hump.signal`` makes things a little more interesting by allowing to emit all signals that match a `Lua string pattern `_. From e85fbad5d563e30d2d949b1c026fb26c61823c9b Mon Sep 17 00:00:00 2001 From: "Tobias V. Langhoff" Date: Tue, 9 Oct 2018 20:15:03 +0200 Subject: [PATCH 2/2] Fix typo in signal docs "it's" -> "its" --- docs/signal.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/signal.rst b/docs/signal.rst index 4160258..1cbca8b 100644 --- a/docs/signal.rst +++ b/docs/signal.rst @@ -62,7 +62,7 @@ Function Reference :returns: A new signal registry. Creates a new signal registry that is independent of the default registry: It -will manage it's own list of signals and does not in any way affect the the +will manage its own list of signals and does not in any way affect the the global registry. Likewise, the global registry does not affect the instance. .. note::