Skip to content

Commit f6951ff

Browse files
committed
fixed a few minor typos
1 parent fc5a210 commit f6951ff

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ mkdir -p YOUR_HASS_CONFIG_DIRECTORY/custom_components
7979
cp -pr pyscript/custom_components/pyscript YOUR_HASS_CONFIG_DIRECTORY/custom_components
8080
```
8181

82-
### Install Jupyter Kerne
82+
### Install Jupyter Kernel
8383

8484
Installing the pyscript Jupyter kernel is optional. The steps to install and use it are in
85-
this [README](https://github.com/custom-components/pyscript/jupyter).
85+
this [README](https://github.com/custom-components/pyscript/tree/master/jupyter).
8686

8787
## Configuration
8888

jupyter/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ the cell in which the function is defined or exiting the Jupyter session will no
9696
already running function. This is same behavior as `reload`. In pyscript, each triggered function
9797
(ie, a trigger has occurred and the trigger conditions are met, and the function is actually
9898
executing Python code) runs as an independent task until it finishes. So if you are testing triggers
99-
of a long-running function (eg, one that uses `task.sleep() or `task.wait_until()`) you could end up
99+
of a long-running function (eg, one that uses `task.sleep()` or `task.wait_until()`) you could end up
100100
with many running instances. It's strongly recommended that you use `task.unique()` to make sure old
101101
running function tasks are terminated when a new one is triggered. Then you can manually call
102102
`task.unique()` to terminate that last running function before exiting the Jupyter session.
@@ -106,7 +106,7 @@ triggers, functions or services there, then those objects will survive the termi
106106
of your Jupyter session. However, if you `reload` the scripts, then those newly-created
107107
objects will be removed. To make any additions or changes permanent (meaning they will
108108
be re-created on each `reload` or each time your restart HASS) then you shoud copy the
109-
changes or additions to one of you pyscript script files.
109+
changes or additions to one of your pyscript script files.
110110

111111
## Global Contexts
112112

@@ -145,4 +145,4 @@ have a different iPython instance), so each tab (eg, a notebook in one and a con
145145
will have different global contexts. If you wish, you can use the function `pyscript.set_global_ctx()`
146146
to set the context in the other tabs to be the same as the first.
147147

148-
* Jupyter auto-completion it doesn't yet work in Jupyter lab - that's an open bug I need to fix.
148+
* Jupyter auto-completion doesn't yet work in Jupyter lab - that's an open bug I need to fix.

0 commit comments

Comments
 (0)