mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 04:44:34 +03:00
Fix typos. (#1829)
This commit is contained in:
4
dump.cpp
4
dump.cpp
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Basic idea: provide concepts that define the interface(s) to different kinds of graphs so that you can do
|
Basic idea: provide concepts that define the interface(s) to different kinds of graphs so that you can do
|
||||||
basic graph operations and algoriths without knowing exactly which kind of graph it is and keep ignorant
|
basic graph operations and algorithms without knowing exactly which kind of graph it is and keep ignorant
|
||||||
about implementation details.
|
about implementation details.
|
||||||
|
|
||||||
Basic design idea: do like the STL
|
Basic design idea: do like the STL
|
||||||
@@ -227,4 +227,4 @@ void use1(Tree& t, Dag& d, Dgraph& dg, Node_ref& tr, DAG_vertex_ref& dr, Gnode_r
|
|||||||
traverse(t,tr);
|
traverse(t,tr);
|
||||||
traverse(d,dr);
|
traverse(d,dr);
|
||||||
traverse(dg,gr);
|
traverse(dg,gr);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user