We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e4008 commit 4c0c559Copy full SHA for 4c0c559
README.md
@@ -177,8 +177,8 @@ generates a graph of APIs in [DOT format][dot]
177
that can be rendered by [GraphViz][graphviz] into a diagram.
178
179
```terminal
180
-$ swift run swift-doc diagram Alamofire/Source > graph.dot
181
-$ head graph.dot
+$ swift run swift-doc diagram Alamofire/Source > Alamofire.gv
+$ head Alamofire.gv
182
digraph Anonymous {
183
"Session" [shape=box];
184
"NetworkReachabilityManager" [shape=box];
@@ -190,7 +190,7 @@ digraph Anonymous {
190
"DataRequest" [shape=box];
191
"Request" [shape=box];
192
193
-$ dot -T svg graph.dot > graph.svg
+$ dot -T svg Alamofire.gv > Alamofire.svg
194
```
195
196
Here's an excerpt of the graph generated for Alamofire:
0 commit comments