Skip to content

Commit e20c405

Browse files
kianmengkushalkolar
andcommitted
Fix typos again
Found via `codespell -L adin,visibles,recuse` and `typos --hidden --format brief` Co-authored-by: Kushal Kolar <kushalkolar@gmail.com>
1 parent 3362669 commit e20c405

File tree

25 files changed

+41
-43
lines changed

25 files changed

+41
-43
lines changed

CODE_OF_CONDUCT.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
# Introduction
44

5-
This code of conduct applies to all spaces managed by the fastplotlib project,
6-
including all public and private mailing lists, issue trackers, wikis, blogs,
7-
Twitter, and any other communication channel used by our community, including
8-
any in-person events, whether directly organized by fastplotlib developers
9-
or associated people.
5+
This code of conduct applies to all spaces managed by the fastplotlib project,
6+
including all public and private mailing lists, issue trackers, wikis, blogs,
7+
Twitter, and any other communication channel used by our community, including
8+
any in-person events, whether directly organized by fastplotlib developers
9+
or associated people.
1010

1111
This code of conduct should be honored by everyone who participates in
1212
the fastplotlib community formally or informally, or claims any affiliation with the
@@ -102,7 +102,7 @@ most appropriate). If you would prefer not to do that, please feel free to
102102
report to the Code of Conduct committee directly, or ask the committee for
103103
advice, in confidence.
104104

105-
You can report issues to the fastplotlib core team:
105+
You can report issues to the fastplotlib core team:
106106

107107
[Kushal Kolar](https://github.com/kushalkolar)
108108
[Caitlin Lewis](https://github.com/clewis7)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ git push origin my_feature_branch
124124
> **_NOTE:_** If your contributions modify how visualizations _look_, see the [Testing details](#testing-details) section at the very bottom.
125125
126126
> **_NOTE:_** If your contributions modify the API, you must regenerate the API docs before making a PR, see
127-
> the [Documenation](#documentation) section below.
127+
> the [Documentation](#documentation) section below.
128128
129129
### Contributing your changes back to `fastplotlib`
130130

GOVERNANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Responsibilities:
6868
1. Only individuals, not organizations, may be added to the leadership team. A candidate individual must be nominated by a current member of the leadership team.
6969
2. A candidate must:
7070
* Be committed to the fastplotlib mission.
71-
* Have demonstrated contibutions to `fastplotlib` through one of:
71+
* Have demonstrated contributions to `fastplotlib` through one of:
7272
* Significant contributions to the codebase.
7373
* Significant application of fastplotlib in a dependent package.
7474
* Significant technical guidance or feedback on the development of `fastplotlib`.

docs/source/api/graphics/LineCollection.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,3 @@ Methods
5959
LineCollection.rotate
6060
LineCollection.share_property
6161
LineCollection.unshare_property
62-

docs/source/api/graphics/LineStack.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,3 @@ Methods
5959
LineStack.rotate
6060
LineStack.share_property
6161
LineStack.unshare_property
62-

docs/source/user_guide/guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ For more information on the various spaces used by rendering engines please see
661661
Imgui
662662
-----
663663

664-
Fastplotlib uses `imgui_bundle <https://github.com/pthom/imgui_bundle>`_ to provide within-canvas UI elemenents if you
664+
Fastplotlib uses `imgui_bundle <https://github.com/pthom/imgui_bundle>`_ to provide within-canvas UI elements if you
665665
installed ``fastplotlib`` using the ``imgui`` toggle, i.e. ``fastplotlib[imgui]``, or installed ``imgui_bundle`` afterwards.
666666

667667
Fastplotlib comes built-in with imgui UIs for subplot toolbars and a standard right-click menu with a number of options.

examples/line/line_cmap_more.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# i.e., the color is a function of sine(x)
3434
line2 = figure[0, 0].add_line(sine, thickness=10, cmap="jet", cmap_transform=sine[:, 1], offset=(0, 4, 0))
3535

36-
# make a line and change the cmap afterward, here we are using the cosine instead fot the transform
36+
# make a line and change the cmap afterward, here we are using the cosine instead for the transform
3737
line3 = figure[0, 0].add_line(sine, thickness=10, cmap="jet", cmap_transform=cosine[:, 1], offset=(0, 6, 0))
3838
# change the cmap
3939
line3.cmap = "bwr"

examples/line_collection/line_collection_colors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Line Collection Colors
33
======================
44
5-
Example showing one way ot setting colors for individual lines in a collection
5+
Example showing one way of setting colors for individual lines in a collection
66
"""
77

88
# test_example = true

examples/machine_learning/covariance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
X = X.T
3232
cov = X @ X.T / X.shape[1]
3333

34-
# reshaped image for each sample wil be 64 x 64 pixels
34+
# reshaped image for each sample will be 64 x 64 pixels
3535
img = cov[0].reshape(64, 64)
3636

3737
# figure kwargs for image widget

examples/misc/em_wave_animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
start, stop = 0, 4 * np.pi
2121

22-
# let's define the x, y and z axes for each with direction of wave propogation along the z-axis
22+
# let's define the x, y and z axes for each with direction of wave propagation along the z-axis
2323
# electric field in the xz plane travelling along
2424
zs = np.linspace(start, stop, 200)
2525
e_ys = np.zeros(200)

0 commit comments

Comments
 (0)