From c3068bb3a3b25b9d4b1dd3840796efab69890af7 Mon Sep 17 00:00:00 2001 From: wilsaj Date: Wed, 21 Dec 2011 14:02:55 -0600 Subject: [PATCH] docfix: looks like a file path might have been accidentally pasted in the middle of a word --- docs/source/development/messaging.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/development/messaging.txt b/docs/source/development/messaging.txt index cc3fd300a89..32350e77e99 100644 --- a/docs/source/development/messaging.txt +++ b/docs/source/development/messaging.txt @@ -144,9 +144,9 @@ Message type: ``execute_request``:: # Source code to be executed by the kernel, one or more lines. 'code' : str, - # A boolean flag which, if True, signals the kernel to execute this - # code as quietly as possible. This means that the kernel will compile - # the code witIPython/core/tests/h 'exec' instead of 'single' (so + # A boolean flag which, if True, signals the kernel to execute + # this code as quietly as possible. This means that the kernel + # will compile the code with 'exec' instead of 'single' (so # sys.displayhook will not fire), and will *not*: # - broadcast exceptions on the PUB socket # - do any logging