diff options
author | natrixaeria <upezu@student.kit.edu> | 2019-12-13 05:18:14 +0100 |
---|---|---|
committer | natrixaeria <upezu@student.kit.edu> | 2019-12-13 05:20:12 +0100 |
commit | 05f85f625eadb2688c69af89d533eeb69ba76da0 (patch) | |
tree | e8a044f7e3b9082def36c62308c170e17a26cfcf /src/plot | |
parent | fc7daf3cb0ab42733a52ce9993570909ed059574 (diff) |
Make two_level trait impl more readable
Also fix a little non-returning result issue
Diffstat (limited to 'src/plot')
-rw-r--r-- | src/plot/gnuplot.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plot/gnuplot.rs b/src/plot/gnuplot.rs index 8bb5ac6..fec64b7 100644 --- a/src/plot/gnuplot.rs +++ b/src/plot/gnuplot.rs @@ -29,6 +29,7 @@ fn write_data_file(path: &str, data: &[[f64; 6]]) -> Result<(), io::Error> { line[0], line[1], line[2], line[3], line[4], line[5] ))?; } + Ok(()) } impl Gnuplot { |