Browse Source

Remove trailing whitespace

Johannes Hofmann 8 years ago
parent
commit
d65ae5562e
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      README.md

+ 2
- 2
README.md View File

52
 
52
 
53
 ```rust
53
 ```rust
54
 use osmpbf::*;
54
 use osmpbf::*;
55
- 
55
+
56
 fn main() {
56
 fn main() {
57
     let reader = ElementReader::from_path("tests/test.osm.pbf").unwrap();
57
     let reader = ElementReader::from_path("tests/test.osm.pbf").unwrap();
58
 
58
 
67
         || 0_u64,      // Zero is the identity value for addition
67
         || 0_u64,      // Zero is the identity value for addition
68
         |a, b| a + b   // Sum the partial results
68
         |a, b| a + b   // Sum the partial results
69
     ).unwrap();
69
     ).unwrap();
70
-     
70
+
71
     println!("Number of ways: {}", ways);
71
     println!("Number of ways: {}", ways);
72
 }
72
 }
73
 ```
73
 ```