From a581437e298478e8bb0ebc481b0730f576d2a73b Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Wed, 27 Jan 2016 15:52:08 +0100 Subject: [PATCH] documentation proper bracketing --- doc/manual/exceptions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/exceptions.txt b/doc/manual/exceptions.txt index d35130600b..e7af653863 100644 --- a/doc/manual/exceptions.txt +++ b/doc/manual/exceptions.txt @@ -15,7 +15,7 @@ Example: try: var a = readLine(f) var b = readLine(f) - echo "sum: " & $(parseInt(a + parseInt(b))) + echo "sum: " & $(parseInt(a) + parseInt(b)) except OverflowError: echo "overflow!" except ValueError: