Skip to content

Commit da17130

Browse files
committed
some ispell cleanup
1 parent 2473a1d commit da17130

File tree

4 files changed

+48
-48
lines changed

4 files changed

+48
-48
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Pyscript: Python Scripting for Home Assistant
66
This HACS custom integration for Home Assistant allows you to write Python functions
77
and scripts that can implement a wide range of automation, logic and triggers.
88
State variables are bound to Python variables and services are callable as Python
9-
functions, so its easy and concise to implement logic.
9+
functions, so it's easy and concise to implement logic.
1010

1111
Contents
1212
~~~~~~~~

docs/overview.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Overview
44
This HACS custom integration allows you to write Python functions and
55
scripts that can implement a wide range of automation, logic and
66
triggers. State variables are bound to Python variables and services are
7-
callable as Python functions, so its easy and concise to implement
7+
callable as Python functions, so it's easy and concise to implement
88
logic.
99

1010
Functions you write can be configured to be called as a service or run
@@ -16,7 +16,7 @@ as small programs that run in parallel, independently of each other, and
1616
they could be active for extended periods of time.
1717

1818
State, event and time triggers are specified by Python function
19-
decorators (the “@” lines immediately before each function definition).
19+
decorators (the "@" lines immediately before each function definition).
2020
A state trigger can be any Python expression using state variables - the
2121
trigger is evaluated only when a state variable it references changes,
2222
and the trigger occurs when the expression is true or non-zero. A time
@@ -30,7 +30,7 @@ Python trigger test based on the event data that runs the Python
3030
function if true.
3131

3232
Pyscript implements a Python interpreter using the ast parser output, in
33-
a fully async manner. That allows several of the magic features to be
33+
a fully async manner. That allows several of the "magic" features to be
3434
implemented in a seamless Pythonic manner, such as binding of variables
3535
to states and functions to services. Pyscript supports imports, although
3636
by default the valid import list is restricted for security reasons

0 commit comments

Comments
 (0)