From 4817b449b0ed7c775a0bcecaa398041ab5d09b51 Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Tue, 3 Dec 2019 16:47:19 -0500
Subject: [PATCH] clarify name with owner (#87)

---
 README.md  | 2 +-
 action.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 7c6aebc..f8d1493 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
 ```yaml
 - uses: actions/checkout@v2-beta
   with:
-    # Repository name
+    # Repository name with owner. For example, actions/checkout
     # Default: ${{ github.repository }}
     repository: ''
 
diff --git a/action.yml b/action.yml
index 2b9692b..0914a2f 100644
--- a/action.yml
+++ b/action.yml
@@ -2,7 +2,7 @@ name: 'Checkout'
 description: 'Checkout a Git repository'
 inputs: 
   repository:
-    description: 'Repository name'
+    description: 'Repository name with owner. For example, actions/checkout'
     default: ${{ github.repository }}
   ref:
     description: >