From ca72c162c87bcd5cfe98d01a2d2464e18ac57885 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 25 Nov 2010 20:55:32 -0600 Subject: [PATCH] need double colon here --- doc/assert.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/assert.txt b/doc/assert.txt index 957cb4525..7f4f1ac75 100644 --- a/doc/assert.txt +++ b/doc/assert.txt @@ -49,8 +49,8 @@ line:: assert f.read() != '...' -This might fail but when re-interpretation comes along it might pass. -You can rewrite this (and any other expression with side effects) easily, though: +This might fail but when re-interpretation comes along it might pass. You can +rewrite this (and any other expression with side effects) easily, though:: content = f.read() assert content != '...'