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: >