浏览代码

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