From 1c1d63b08231076ff166040112f5dc517f9ea01d Mon Sep 17 00:00:00 2001 From: Ryan Folks <47860863+RyanDoesMath@users.noreply.github.com> Date: Mon, 22 May 2023 09:22:58 -0400 Subject: [PATCH] Fixed a typo in figure-factory-subplots.md Fixed the world's smallest typo in the doc file for figure factory. --- doc/python/figure-factory-subplots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/figure-factory-subplots.md b/doc/python/figure-factory-subplots.md index eaaa55b797a..3a6c837692d 100644 --- a/doc/python/figure-factory-subplots.md +++ b/doc/python/figure-factory-subplots.md @@ -61,7 +61,7 @@ Y, X = np.meshgrid(x, y) u = -1 - X**2 + Y v = 1 + X - Y**2 -fig2 = ff.create_streamline(x, y, u, v, arrow_scale=.1, name='Steamline') +fig2 = ff.create_streamline(x, y, u, v, arrow_scale=.1, name='Streamline') ``` Edit the figures' x and y axes attributes to create subplots: