Skip to content

Commit 57b0fae

Browse files
committed
DOC-024: Use lower-case verbs in graph in developer notes section.
1 parent e5682f8 commit 57b0fae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/graphs/graph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
userMach = "User's Virtual\nMachine"
3333
userGraph.node(outputEnv, **envNodeProps)
3434
userGraph.node(userMach, **machNodeProps)
35-
userGraph.edge(outputEnv, userMach, "Vagrant and\nVirtualBox Creates",
35+
userGraph.edge(outputEnv, userMach, "Vagrant and\nVirtualBox creates",
3636
{"color": "blue", "fontname": font})
3737

3838
# Create developer graph.
@@ -45,11 +45,11 @@
4545
devGraph.node(outputEnv, **envNodeProps)
4646
devGraph.node(inputEnv, **envNodeProps)
4747
devGraph.node(devMach, **machNodeProps)
48-
devGraph.edge(inputEnv, devMach, "Vagrant and\nVirtualBox Creates",
48+
devGraph.edge(inputEnv, devMach, "Vagrant and\nVirtualBox creates",
4949
{"color": vboxVagrant, "fontname": font, "rank": "same"})
50-
devGraph.edge(devMach, devMach, "Ansible\nProvisions",
50+
devGraph.edge(devMach, devMach, "Ansible\nprovisions",
5151
{"color": ansible, "fontname": font})
52-
devGraph.edge(devMach, outputEnv, "Vagrant\nPackages",
52+
devGraph.edge(devMach, outputEnv, "Vagrant\npackages",
5353
{"color": vagrant, "fontname": font})
5454

5555
# Combine and print graphs.

docs/images/graph.png

-99 Bytes
Loading

0 commit comments

Comments
 (0)