diff --git a/README.md b/README.md
index 549b566c..d671a244 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ The GitHub Actions ToolKit provides a set of packages to make creating actions e
## Packages
-:heavy_check_mark: [@actions/core](packages/core)
+:heavy_check_mark: [@actions/core](packages/core)
Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core)
@@ -28,7 +28,7 @@ $ npm install @actions/core
```
-:runner: [@actions/exec](packages/exec)
+:runner: [@actions/exec](packages/exec)
Provides functions to exec cli tools and process output. Read more [here](packages/exec)
@@ -46,7 +46,7 @@ $ npm install @actions/glob
```
-:pencil2: [@actions/io](packages/io)
+:pencil2: [@actions/io](packages/io)
Provides disk i/o functions like cp, mv, rmRF, find etc. Read more [here](packages/io)
@@ -55,18 +55,18 @@ $ npm install @actions/io
```
-:hammer: [@actions/tool-cache](packages/tool-cache)
+:hammer: [@actions/tool-cache](packages/tool-cache)
Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache)
-See @actions/cache for caching workflow dependencies.
+See @actions/cache for caching workflow dependencies.
```bash
$ npm install @actions/tool-cache
```
-:octocat: [@actions/github](packages/github)
+:octocat: [@actions/github](packages/github)
Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github)
@@ -75,7 +75,7 @@ $ npm install @actions/github
```
-:floppy_disk: [@actions/artifact](packages/artifact)
+:floppy_disk: [@actions/artifact](packages/artifact)
Provides functions to interact with actions artifacts. Read more [here](packages/artifact)
@@ -84,7 +84,7 @@ $ npm install @actions/artifact
```
-:dart: [@actions/cache](packages/cache)
+:dart: [@actions/cache](packages/cache)
Provides functions to cache dependencies and build outputs to improve workflow execution time. Read more [here](packages/cache)
@@ -115,7 +115,7 @@ Problem Matchers are a way to scan the output of actions for a specified regex p
:warning: [Proxy Server Support](docs/proxy-support.md)
-Self-hosted runners can be configured to run behind proxy servers.
+Self-hosted runners can be configured to run behind proxy servers.
@@ -132,23 +132,23 @@ Illustrates how to create a simple hello world javascript action.