Pārlūkot izejas kodu

Remove trailing whitespace

Johannes Hofmann 8 gadus atpakaļ
vecāks
revīzija
d65ae5562e
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2
    2
      README.md

+ 2
- 2
README.md Parādīt failu

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