diff --git a/README.md b/README.md
index f36a510..e94e530 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,14 @@
# Code Scanning C# Tutorial
-Welcome to the Code Scanning C# Tutorial! This tutorial will take you through how to set up Github Advanced Security: Code Scanning as well as interpret results that it may find. The following repository contains cross-site scripting vulnerability for demonstration purpose.
+Welcome to the Code Scanning C# Tutorial! This tutorial will take you through how to set up GitHub Advanced Security's Code Scanning, as well as interpret results that it may find. The following repository contains cross-site scripting vulnerabilities for demonstration purposes.
## Introduction
-Code scanning is a feature that you use to analyze the code in a GitHub repository to find security vulnerabilities and coding errors. Any problems identified by the analysis are shown in GitHub.
+Code Scanning is a feature that you use to analyze the code in a GitHub repository to find security vulnerabilities and coding errors. Any problems identified by the analysis are shown in GitHub.
-You can use code scanning with CodeQL, a semantic code analysis engine. CodeQL treats code as data, allowing you to find potential vulnerabilities in your code with greater confidence than traditional static analyzers.
+You can use Code Scanning with CodeQL, a semantic code analysis engine. CodeQL treats code as data, allowing you to find potential vulnerabilities in your code with greater confidence than traditional static analyzers.
-This tutorial with use CodeQL Analysis with Code Scanning in order to search for vulnerabilities within your code.
+This tutorial will use CodeQL analysis with Code Scanning in order to search for vulnerabilities within your code.
## Instructions
@@ -55,6 +55,7 @@ This will create a GitHub Actions Workflow file with CodeQL already set up. Sinc
#### Actions Workflow
The Actions Workflow file contains a number of different sections including:
+
1. Checking out the repository
2. Initializing the CodeQL Action
3. Running Autobuilder (or code your own build steps if autobuild doesn't work)
@@ -62,11 +63,11 @@ The Actions Workflow file contains a number of different sections including:
-Please change `line 35` to only use `csharp` for this demonstration purpose.
+Please change `line 35` to only use `csharp` for this demonstration.
-Click `Start Commit` -> `Commit this file` to commit the changes to _main_ branch.
+Click `Start Commit` -> `Commit this file` to commit the changes to the _main_ branch.