소스 검색

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