From 3e25dc406296a93e336b2d3b976da3085db4283d Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 25 May 2015 20:52:06 -0700 Subject: [PATCH] Clarify documentation --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7f817b5a..a2751a08 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1605,8 +1605,8 @@ impl<'conn> Statement<'conn> { /// the proper format. See the [Postgres documentation](http://www.postgresql.org/docs/9.4/static/sql-copy.html) /// for details. /// - /// If the statement is not a `COPY FROM STDIN` statement, this method will - /// return an error though the statement will still be executed. + /// If the statement is not a `COPY FROM STDIN` statement, it will still be + /// executed and this method will return an error. /// /// # Examples ///