瀏覽代碼

Remove trailing whitespace

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

+ 2
- 2
README.md 查看文件

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