Typos in docs.
authorScott Gasch <[email protected]>
Sat, 17 Dec 2022 20:04:43 +0000 (12:04 -0800)
committerScott Gasch <[email protected]>
Sat, 17 Dec 2022 20:04:43 +0000 (12:04 -0800)
src/pyutils/graph.py

index 099bc2c9ca9bc6f9d359c655a1bbb9354829744e..903be145f153fb967a81a6f731ddd1e594d04415 100644 (file)
@@ -85,7 +85,7 @@ class Graph(object):
 
     def remove_edge(self, source: str, dest: str):
         """Remove a previously added edge in the graph.  If the graph is
-        not directed (see :meth:`__ini__`), also removes the reciprocal
+        not directed (see :meth:`__init__`), also removes the reciprocal
         edge from dest back to source.
 
         .. note::
@@ -323,9 +323,9 @@ class Graph(object):
 
             graph g {
                 node [shape=record];
-                A -- B [w=3];
+                A -- B [weight=3];
                 B -- D;
-                A -- C [w=2];
+                A -- C [weight=2];
                 C -- D -- E -- F;
                 F -- F;
                 E -- G;