chiark / gitweb /
Build: Kill $(mkdir_p); use $(MKDIR_P).
[tripe] / py / tripe.py.in
index 790601067e89efda6cb9d1998aea7def082f963f..e88f379f07a43fd8768b1f8f50f5f5c6166f3b66 100644 (file)
@@ -31,7 +31,7 @@ implementing services.
 Rather than end up in lost in a storm of little event-driven classes, or a
 morass of concurrent threads, the module uses coroutines to present a fairly
 simple function call/return interface to potentially long-running commands
-which must run without blocking the main process.  It sassumes a coroutine
+which must run without blocking the main process.  It assumes a coroutine
 module presenting a subset of the `greenlet' interface: if actual greenlets
 are available, they are used; otherwise there's an implementation in terms of
 threads (with lots of locking) which will do instead.