From b344d7a61d3f08a857bfd67701208f841303deef Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Sat, 5 Sep 2020 13:39:22 +0200 Subject: [PATCH] fix typo in 01-explain-syntax `ours` is the possessive pronoun, `our's` is common misspelling of it --- responses/01_explain-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/responses/01_explain-syntax.md b/responses/01_explain-syntax.md index 98a58af..7c97255 100644 --- a/responses/01_explain-syntax.md +++ b/responses/01_explain-syntax.md @@ -27,7 +27,7 @@ Let's take a second to talk about each of the pieces that we see here: - `name: CI` - This is the user-defined name for the workflow. This shows up on the Actions tab so we can see which workflows, and their statuses, run on this repository. - - As you can see, our's is currently named `CI` + - As you can see, ours is currently named `CI` - `on: [push]` - This defines the **event** that will tigger a workflow on this repository. Currently we are listening for any [push event](https://developer.github.com/v3/activity/events/types/#pushevent) that happens within this repository. - Also note that this is an array, which means we can trigger this workflow [on more than one event](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#about-workflow-events) if that is our intended behavior.