From d82a9c1618be09690ddab73aa3b1f1f994b7c402 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 6 Jun 2008 10:43:43 +0000 Subject: [PATCH] Fix brackets. --- Doc/reference/simple_stmts.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index e5028ab9a7..fa6bd27e88 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -375,8 +375,8 @@ The :keyword:`print` statement .. index:: statement: print .. productionlist:: - print_stmt: "print" ([`expression` ("," `expression`)* [","] - : | ">>" `expression` [("," `expression`)+ [","]) + print_stmt: "print" ([`expression` ("," `expression`)* [","]] + : | ">>" `expression` [("," `expression`)+ [","]]) :keyword:`print` evaluates each expression in turn and writes the resulting object to standard output (see below). If an object is not a string, it is -- 2.50.0