Skip to content

Commit 41bcb71

Browse files
committed
Remove newline from Show impl
1 parent f7d57eb commit 41bcb71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
//! }
5252
//! ```
5353
#![doc(html_root_url="https://sfackler.github.io/doc")]
54-
#![feature(plugin, unsafe_destructor, slicing_syntax, old_orphan_check)]
54+
#![feature(plugin, unsafe_destructor, old_orphan_check)]
5555
#![warn(missing_docs)]
5656
#![allow(unstable)]
5757

@@ -1234,7 +1234,7 @@ pub struct Statement<'conn> {
12341234
impl<'a> fmt::Show for Statement<'a> {
12351235
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
12361236
write!(fmt,
1237-
"Statement {{ connection: {:?}, name: {:?}, parameter_types: {:?},
1237+
"Statement {{ connection: {:?}, name: {:?}, parameter_types: {:?}, \
12381238
result_descriptions: {:?} }}",
12391239
self.conn,
12401240
self.name,

0 commit comments

Comments
 (0)