瀏覽代碼

Remove trailing whitespace

Johannes Hofmann 8 年之前
父節點
當前提交
d65ae5562e
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      README.md

+ 2
- 2
README.md 查看文件

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
 ```