summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2015-06-07 23:17:23 +0200
committerpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2015-06-07 23:17:23 +0200
commitf1071c26aaa94b38738792df98cf28a732762b63 (patch)
tree9d8c1340e09d93f93f4e86ff9f6d6f110375efdc /src
parenta1346a1daff8dbfd040ba0427bc9c4eccb0b86de (diff)
Fixed typo. Updated TODOs
Diffstat (limited to 'src')
-rw-r--r--src/row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/row.rs b/src/row.rs
index bf86f8a..9519793 100644
--- a/src/row.rs
+++ b/src/row.rs
@@ -64,7 +64,7 @@ impl Row {
}
/// Print the row to `out`, with `separator` as column separator, and `col_width`
- /// specifyin g the width of each columns
+ /// specifying the width of each columns
pub fn print<T: Write>(&self, out: &mut T, separator: char, col_width: &[usize]) -> Result<(), Error> {
for i in 0..self.get_height() {
try!(out.write_all(separator.to_string().as_bytes()));