Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 62ea986

Browse files
authored
Merge pull request #37 from jbampton/fix-spelling
Fix spelling
2 parents a6b7d7b + 286f359 commit 62ea986

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1818

1919
## 0.3.0 - 2020-07-21
2020
### Added
21-
- Added suport for using JupyterDash in Google Colab ([#27](https://github.com/plotly/jupyter-dash/pull/27))
21+
- Added support for using JupyterDash in Google Colab ([#27](https://github.com/plotly/jupyter-dash/pull/27))
2222
- Added support for installing JupyterDash from git using pip: (e.g. `pip install git+https://github.com/plotly/jupyter-dash.git@master`)
2323

2424
### Changed

notebooks/getting_started.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
"source": [
238238
"Serve the app using `run_server`. Unlike the standard `Dash.run_server` method, the `JupyterDash.run_server` method doesn't block execution of the notebook. It serves the app in a background thread, making it possible to run other notebook calculations while the app is running.\n",
239239
"\n",
240-
"This makes it possible to iterativly update the app without rerunning the potentially expensive data processing steps."
240+
"This makes it possible to iteratively update the app without rerunning the potentially expensive data processing steps."
241241
]
242242
},
243243
{

notebooks/getting_started.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def update_x_timeseries(hoverData, yaxis_column_name, axis_type):
202202
# %% [markdown]
203203
# Serve the app using `run_server`. Unlike the standard `Dash.run_server` method, the `JupyterDash.run_server` method doesn't block execution of the notebook. It serves the app in a background thread, making it possible to run other notebook calculations while the app is running.
204204
#
205-
# This makes it possible to iterativly update the app without rerunning the potentially expensive data processing steps.
205+
# This makes it possible to iteratively update the app without rerunning the potentially expensive data processing steps.
206206

207207
# %%
208208
app.run_server()

0 commit comments

Comments
 (0)