소스 검색

Fix README typo

Johannes Hofmann 8 년 전
부모
커밋
44716c773e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      README.md

+ 2
- 2
README.md 파일 보기

@@ -17,7 +17,7 @@ osmpbf = "0.1"
17 17
 and this to your crate root:
18 18
 
19 19
 ```rust
20
-extern crate osmbpf;
20
+extern crate osmpbf;
21 21
 ```
22 22
 
23 23
 Here's a simple example that counts all the ways in a file:
@@ -105,7 +105,7 @@ aggregating all nodes in a file.
105 105
 
106 106
 Elements reference each other using integer IDs. Corresponding elements could be
107 107
 stored in any Blob, so finding them can involve iterating over the whole file.
108
-Some files declare an optional feature "Sort.Type_then_ID" in the HeaderBlock to
108
+Some files declare an optional feature "Sort.Type\_then\_ID" in the HeaderBlock to
109 109
 indicate that elements are stored sorted by their type and then ID. This can be
110 110
 used to dramatically reduce the search space.
111 111