2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 04:12:11 +00:00

Fix subgraph usage example in the documentation.

Make the docs match the example.
This commit is contained in:
Jedrzej Solecki
2017-07-13 09:33:52 -07:00
parent 74115a2a1e
commit 2999dc735b

View File

@@ -91,7 +91,7 @@ their parent.
<pre>
Graph& G1 = G0.create_subgraph(), G2 = G0.create_subgraph();
enum { A1, B1, C2 }; // for conveniently referring to vertices in G1
enum { A1, B1, C1 }; // for conveniently referring to vertices in G1
enum { A2, B2 }; // for conveniently referring to vertices in G2
</pre>