Skip to content

Commit 7f5c07b

Browse files
committed
Fixed documentation typos in the widget example programs
1 parent 355f3a3 commit 7f5c07b

File tree

6 files changed

+5
-60
lines changed

6 files changed

+5
-60
lines changed

examples/widgets/buttons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=======
33
Buttons
44
=======
5-
An pretty cool example to show how to use buttons widget.The program shows a simple GUI with a sine wave changing its frequency.The next and previous button widget used here helps shows the wave with new frequency.
5+
The program shows a simple GUI with a sine wave changing its frequency.The next and previous button widget used here helps shows the wave with new frequency.
66
"""
77

88
import numpy as np

examples/widgets/lasso_selector_demo_sgskip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
===================
33
Lasso Selector Demo
44
===================
5-
An example to show the Lasso Selector widget. The graph shows a scatter plot. You can select a few points by drawing a lasso loop around the points on the graphjust like any other Lasso tool. To draw, just click on the graph,hold and drag it around the points you need to select.
5+
An example to show the use of Lasso Selector widget. The graph shows a scatter plot. You can select a few points by drawing a lasso loop around the points on the graphjust like any other Lasso tool. To draw, just click on the graph,hold and drag it around the points you need to select.
66
77
"""
88
from __future__ import print_function

examples/widgets/multicursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
===========
33
Multicursor
44
===========
5-
An example to show multiple cursors. The graph has two subplots and on hovering over the cursor over the two seperate graphs, the values are shown respectively.
5+
A program to show multiple cursors. The graph has two subplots and on hovering the cursor over the two seperate graphs, the values are shown respectively.
66
"""
77
import numpy as np
88
import matplotlib.pyplot as plt

examples/widgets/radio_buttons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=============
33
Radio Buttons
44
=============
5-
An example to show how radio buttons widget can be used in the plots. The radio button in this program helps you choose one of the three different sine waves to be shown in the plot.
5+
A program to show how radio buttons widget can be used in the plots. The radio button in this program helps you choose one of the three different sine waves to be shown in the plot.
66
"""
77
import numpy as np
88
import matplotlib.pyplot as plt

examples/widgets/slider_demo1.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

examples/widgets/textbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=======
33
Textbox
44
=======
5-
An example to show the use of textbox widget. You can use it mention any text that needs to be displayed or formulas or values. You can further use it to take input from the user, and use a submit button to create plots using the given input(Just a use case).
5+
It shows the use of textbox widget. You can use it mention any text that needs to be displayed or formulas or values. You can further use it to take input from the user, and use a submit button to create plots using the given input(Just a use case).
66
"""
77

88
import numpy as np

0 commit comments

Comments
 (0)