aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEdward Barnard2015-12-24 16:06:37 +0000
committerEdward Barnard2015-12-24 16:06:37 +0000
commit722f4421b97f7f4174314a29cf22cb974140a22c (patch)
tree12f6a845343c0ccd93a8ad03f80f61a586a6e2ee /src
parentba268d3f43fe293cbffb7d52456b24a7561af20a (diff)
downloadrust-plist-722f4421b97f7f4174314a29cf22cb974140a22c.tar.bz2
Fix indentation
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ced596a..8a5d747 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -27,8 +27,8 @@
//! let plist = Plist::read(file).unwrap();
//!
//! match plist {
-//! Plist::Array(array) => (),
-//! _ => ()
+//! Plist::Array(_array) => (),
+//! _ => ()
//! }
//!
//! ```