diff -r fb2052c94ebd -r 467ca6d16556 doc/maps1.dox
--- a/doc/maps1.dox Tue Mar 13 15:35:56 2007 +0000
+++ b/doc/maps1.dox Tue Mar 13 15:42:06 2007 +0000
@@ -34,7 +34,7 @@
To make easy to use them - especially as template parameters - there are map concepts like by graph classes.
-- \ref ReadMap - values can be red out with the \c operator[].
+
- \ref ReadMap - values can be read out with the \c operator[].
\code value_typed_variable = map_instance[key_value]; \endcode
- \ref WriteMap - values can be set with the \c set() member function.
@@ -59,7 +59,7 @@
If you want to assign data to nodes, just declare a NodeMap with the corresponding
type. As an example, think of a edge-weighted directed graph.
\code ListGraph::EdgeMap weight(graph); \endcode
-You can see that the map needs the graph hows edges will mapped, but nothing more.
+You can see that the map needs the graph whose edges will mapped, but nothing more.
If the graph class is extendable or erasable the map will automatically follow
the changes you make. If a new node is added a default value is mapped to it.