summaryrefslogtreecommitdiffstats
path: root/src/file.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-05-10 00:13:00 +0100
committerBen S <ogham@bsago.me>2015-05-10 00:13:00 +0100
commit89dd5c12395230769100975b9ea582039b386dfd (patch)
tree972b79d538d3953b63515f636deb25cba50d7dde /src/file.rs
parent36116a142095d61ab7f601cb6efda03d2cb8d749 (diff)
Straighten quotes
Diffstat (limited to 'src/file.rs')
-rw-r--r--src/file.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file.rs b/src/file.rs
index 8daffa3..2f60a1d 100644
--- a/src/file.rs
+++ b/src/file.rs
@@ -382,8 +382,8 @@ impl<'a> File<'a> {
/// Marker indicating that the file contains extended attributes
///
- /// Returns "@" or " ” depending on wheter the file contains an extented
- /// attribute or not. Also returns “ ” in case the attributes cannot be read
+ /// Returns "@" or " " depending on wheter the file contains an extented
+ /// attribute or not. Also returns " " in case the attributes cannot be read
/// for some reason.
fn attribute_marker(&self) -> ANSIString {
if self.xattrs.len() > 0 { Plain.paint("@") } else { Plain.paint(" ") }