From ed350dfef13921a05ace9d9849ed0e1ab1b6fa92 Mon Sep 17 00:00:00 2001 From: p-oneil Date: Thu, 5 Dec 2024 11:14:25 -0500 Subject: [PATCH] grammar correction --- src/courses/advanced/09.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/courses/advanced/09.md b/src/courses/advanced/09.md index da536c332..be2774f47 100644 --- a/src/courses/advanced/09.md +++ b/src/courses/advanced/09.md @@ -228,7 +228,7 @@ jobs: - `gold-image` is an arbitrary name we gave this job. It would be more useful if we were running more than one. - `name` is a simple title for this job. -- `runs-on` declares what operating system we want our runner node to be. We picked Ubuntu (and we suggest you do to to make sure the rest of the workflow commands work correctly). +- `runs-on` declares what operating system we want our runner node to be. We picked Ubuntu (and we suggest you do as well to make sure the rest of the workflow commands work correctly). - `env` declares environment variables for use by any step of this job. We will go ahead and set a few variables for running InSpec later on: - `CHEF_LICENSE` will automatically accept the license prompt when you run InSpec the first time so that we don't hang waiting for input! - `PROFILE` is set to the path of the InSpec profile we will use to test. This will make it easier to refer to the profile multiple times and still make it easy to swap out.