From e4831ab7d0c621493ee08724f54f4f5f21105c71 Mon Sep 17 00:00:00 2001 From: Chris LaRose Date: Sat, 5 Mar 2016 15:51:50 -0800 Subject: [PATCH] Made quick spelling fixes --- source/developers/index.markdown | 4 ++-- source/getting-started/automation.markdown | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/developers/index.markdown b/source/developers/index.markdown index f7d376c7473..1b1e571000f 100644 --- a/source/developers/index.markdown +++ b/source/developers/index.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- -Home Assistant is build from the ground-up to be easily extensible by other developers using components. It uses [Python 3](https://www.python.org/) for the backend and [Polymer (Webcomponents)](https://www.polymer-project.org/) for the frontend. +Home Assistant is built from the ground up to be easily-extensible by other developers using components. It uses [Python 3](https://www.python.org/) for the backend and [Polymer (Webcomponents)](https://www.polymer-project.org/) for the frontend. Home Assistant is open-source and MIT licensed. The source can be found here: @@ -19,7 +19,7 @@ Home Assistant is open-source and MIT licensed. The source can be found here: ### {% linkable_title Starting development %} -You will need to setup a development environment if you want to start developing a new feature or component for Home Assistant. Please follow these steps to perform it. Visit the [the Home Assistant repository](https://github.com/balloob/home-assistant) first and click fork in the top right. +You will need to set up a development environment if you want to start developing a new feature or component for Home Assistant. Please follow these steps to perform it. Visit the [the Home Assistant repository](https://github.com/balloob/home-assistant) first and click fork in the top right. ```bash $ git clone https://github.com/YOUR_GIT_USERNAME/home-assistant.git diff --git a/source/getting-started/automation.markdown b/source/getting-started/automation.markdown index 807c7f3479e..4c790f9f275 100644 --- a/source/getting-started/automation.markdown +++ b/source/getting-started/automation.markdown @@ -21,7 +21,7 @@ Actions will call services within Home Assistant. For example, turn a light on, Conditions are used to prevent actions from firing unless certain conditions are met. For example, it is possible to only turn on the light if someone comes home and it is after a certain point in time. -The difference between a condition and a trigger can be confusing. The difference is that the trigger looks at the event that is happening, i.e. a car engine turning on. Conditions looks at the current state of the system, i.e. is the car engine on. +The difference between a condition and a trigger can be confusing. The difference is that the trigger looks at the event that is happening, e.g., a car engine turning on. Conditions looks at the current state of the system, e.g., is the car engine on. ### {% linkable_title Exploring the internal state %}