Skip to content

Commit 388d9e4

Browse files
Update creating-and-updating-figures.md
1 parent 4a13db6 commit 388d9e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: doc/python/creating-and-updating-figures.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ import plotly.graph_objects as go
321321

322322
fig = go.Figure(
323323
data=[go.Scatter(y=[1, 3, 2], line=dict(color="crimson"))],
324-
layout=dict(title=dict(text="A Graph Object Figure With Magic Underscore Notation"))
324+
layout=dict(title=dict(text="A Graph Objects Figure Without Magic Underscore Notation"))
325325
)
326326

327327
fig.show()
@@ -334,7 +334,7 @@ import plotly.graph_objects as go
334334

335335
fig = go.Figure(
336336
data=[go.Scatter(y=[1, 3, 2], line_color="crimson")],
337-
layout_title_text="Another Graph Object Figure With Magic Underscore Notation"
337+
layout_title_text="A Graph Objects Figure With Magic Underscore Notation"
338338
)
339339

340340
fig.show()

0 commit comments

Comments
 (0)