1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Fix broken image links.

This commit is contained in:
Patrick Thomson 2019-06-04 10:25:29 -04:00
parent 15c1a84e6d
commit c30d0fc084

View File

@ -134,7 +134,7 @@ $ semantic graph main.py | dot -Tsvg > main.html && open main.html
You'll get something that looks like this:
![an import graph](images/import-graph.svg)
![an import graph](images/import_graph.svg)
## Call graphs
@ -144,4 +144,4 @@ Call graphs, expand on the import graphing capabilities by adding in some additi
$ semantic graph --calls main.py | dot -Tsvg > main.html && open main.html
```
![an import graph](images/import-graph.svg)
![a call graph](images/call_graph.svg)