From d9776645db7806bf2e648bc33c8ce3565a6d37ad 2014-10-17 16:42:56
From: Thomas Kluyver <takowl@gmail.com>
Date: 2014-10-17 16:42:56
Subject: [PATCH] Wording tweak

---

diff --git a/docs/source/development/how_ipython_works.rst b/docs/source/development/how_ipython_works.rst
index 5b3f9af..89f9163 100644
--- a/docs/source/development/how_ipython_works.rst
+++ b/docs/source/development/how_ipython_works.rst
@@ -11,7 +11,7 @@ the terminal. It does something like this::
         code = input(">>> ")
         exec(code)
 
-Of course, it's much more complicated, because it has to deal with multi-line
+Of course, it's much more complex, because it has to deal with multi-line
 code, tab completion using :mod:`readline`, magic commands, and so on. But the
 model is like that: prompt the user for some code, and when they've entered it,
 exec it in the same process. This model is often called a REPL, or