Skip to content

Commit ef30962

Browse files
authored
Merge pull request miykael#38 from habi/patch-1
Corrected 'Visulaize' to 'Visualize'
2 parents 271a788 + 893cee2 commit ef30962

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

notebooks/basic_graph_visualization.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"# Write graph of type orig\n",
9191
"spmflow.write_graph(graph2use='orig', dotfilename='./graph_orig.dot')\n",
9292
"\n",
93-
"# Visulaize graph\n",
93+
"# Visualize graph\n",
9494
"from IPython.display import Image\n",
9595
"Image(filename=\"graph_orig.dot.png\")"
9696
]
@@ -113,7 +113,7 @@
113113
"# Write graph of type flat\n",
114114
"spmflow.write_graph(graph2use='flat', dotfilename='./graph_flat.dot')\n",
115115
"\n",
116-
"# Visulaize graph\n",
116+
"# Visualize graph\n",
117117
"from IPython.display import Image\n",
118118
"Image(filename=\"graph_flat.dot.png\")"
119119
]
@@ -138,7 +138,7 @@
138138
"# Write graph of type hierarchical\n",
139139
"metaflow.write_graph(graph2use='hierarchical', dotfilename='./graph_hierarchical.dot')\n",
140140
"\n",
141-
"# Visulaize graph\n",
141+
"# Visualize graph\n",
142142
"from IPython.display import Image\n",
143143
"Image(filename=\"graph_hierarchical.dot.png\")"
144144
]
@@ -161,7 +161,7 @@
161161
"# Write graph of type colored\n",
162162
"metaflow.write_graph(graph2use='colored', dotfilename='./graph_colored.dot')\n",
163163
"\n",
164-
"# Visulaize graph\n",
164+
"# Visualize graph\n",
165165
"from IPython.display import Image\n",
166166
"Image(filename=\"graph_colored.dot.png\")"
167167
]
@@ -184,7 +184,7 @@
184184
"# Write graph of type exec\n",
185185
"metaflow.write_graph(graph2use='exec', dotfilename='./graph_exec.dot')\n",
186186
"\n",
187-
"# Visulaize graph\n",
187+
"# Visualize graph\n",
188188
"from IPython.display import Image\n",
189189
"Image(filename=\"graph_exec.dot.png\")"
190190
]
@@ -265,7 +265,7 @@
265265
"# Write graph of type orig\n",
266266
"spmflow.write_graph(graph2use='orig', dotfilename='./graph_orig_notSimple.dot', simple_form=False)\n",
267267
"\n",
268-
"# Visulaize graph\n",
268+
"# Visualize graph\n",
269269
"from IPython.display import Image\n",
270270
"Image(filename=\"graph_orig_notSimple.dot.png\")"
271271
]

0 commit comments

Comments
 (0)