From dedab832868ffe0f2cf053bcc7ce32e92fb5b8fa Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Wed, 1 Jun 2011 14:06:44 +0200 Subject: [PATCH] fixed some descriptions --- tools/osmpbf-outline.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/osmpbf-outline.cpp b/tools/osmpbf-outline.cpp index af357d5..7a2130d 100644 --- a/tools/osmpbf-outline.cpp +++ b/tools/osmpbf-outline.cpp @@ -10,10 +10,10 @@ // netinet provides the network-byte-order conversion function #include -// this is the header to libosmpbf for reading and writing the lowlevel blob storags +// this is the header to libosmpbf for reading and writing the low-level blob storage #include -// this is the header to libosmpbf for reading and writing the highlevel osm objects +// this is the header to libosmpbf for reading and writing the high-level osm objects #include // the maximum size of a blob-header in bytes @@ -304,9 +304,9 @@ int main(int argc, char *argv[]) { debug(" with meta-info"); } - // tell about densenodes + // tell about dense nodes if(pg.has_dense()) { - // raise the flag - we have at leastone item type + // raise the flag - we have at least one item type flag = true; debug(" dense nodes: %d", pg.dense().id_size()); @@ -316,7 +316,7 @@ int main(int argc, char *argv[]) { // tell about ways if(pg.ways_size() > 0) { - // raise the flag - we have at leastone item type + // raise the flag - we have at least one item type flag = true; debug(" ways: %d", pg.ways_size()); @@ -324,9 +324,9 @@ int main(int argc, char *argv[]) { debug(" with meta-info"); } - // tell aboutrelations + // tell about relations if(pg.relations_size() > 0) { - // raise the flag - we have at leastone item type + // raise the flag - we have at least one item type flag = true; debug(" relations: %d", pg.relations_size());