From 3b4339199e7eafa9901d48d4c7b25c322b17e69a Mon Sep 17 00:00:00 2001
From: Nick Adcock <nick.adcock@docker.com>
Date: Fri, 6 Mar 2020 09:15:16 +0000
Subject: [PATCH] Fixing nits with action.yml descs

Signed-off-by: Nick Adcock <nick.adcock@docker.com>
---
 action.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/action.yml b/action.yml
index 7e5cb5c..45eb5e9 100644
--- a/action.yml
+++ b/action.yml
@@ -1,5 +1,5 @@
-name: Build and push docker images
-description: Builds and pushes docker images and will log in to a docker registry if required
+name: Build and push Docker images
+description: Builds and pushes Docker images and will log in to a Docker registry if required
 author: Docker
 runs:
   using: docker
@@ -8,13 +8,13 @@ runs:
     - build-push
 inputs:
   username:
-    description: Username used to log in to a docker registry. If not set then no login will occur
+    description: Username used to log in to a Docker registry. If not set then no login will occur
     required: false
   password:
-    description: Password used to log in to a docker registry. If not set then no login will occur
+    description: Password used to log in to a Docker registry. If not set then no login will occur
     required: false
   registry:
-    description: Server address of docker registry. If not set then will default to Docker Hub
+    description: Server address of Docker registry. If not set then will default to Docker Hub
     required: false
   repository:
     description: Docker repository to tag the image with
@@ -38,7 +38,7 @@ inputs:
     description: Name of the Dockerfile (Default is 'path/Dockerfile')
     required: false
   target:
-    description: Sets the target build stage to build
+    description: Sets the target stage to build
     required: false
   always_pull:
     description: Always attempt to pull a newer version of the image