Skip to content

Commit

Permalink
Fixing some typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
davidban77 committed Aug 1, 2019
1 parent c0cf05c commit ca23689
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ print(f"Name: {alpine1.name} -- Status: {alpine1.status} -- Console: {alpine1.co
alpine1.stop()
print(alpine1.status)
# stopped

alpine1.start()
print(alpine1.status)
# started
Expand All @@ -102,7 +103,7 @@ You also have some commodity methods like the `nodes_summary` and `links_summary
...
from tabulate import tabulate

nodes_summary = lab.nodes_summar(is_print=False)
nodes_summary = lab.nodes_summary(is_print=False)

print(
tabulate(nodes_summary, headers=["Node", "Status", "Console Port", "ID"])
Expand Down

0 comments on commit ca23689

Please sign in to comment.