From b152b04c287bcfebd9fcbe310fd85da74c513089 Mon Sep 17 00:00:00 2001
From: IvanZosimov <ivanzosimov@github.com>
Date: Tue, 26 Jul 2022 11:49:26 +0200
Subject: [PATCH] Fix typo in advanced-usage.md

---
 docs/advanced-usage.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md
index 4edb5495..85d91835 100644
--- a/docs/advanced-usage.md
+++ b/docs/advanced-usage.md
@@ -179,7 +179,7 @@ jobs:
 
 # Using python-version-file input
 
-`setup-python` action can read Python/PyPy version from a version file. `python-version-file` input is used for specifying the path to the version file. If the `.python-version` file doesn't exist, the action will fail with an error.
+`setup-python` action can read Python/PyPy version from a version file. `python-version-file` input is used for specifying the path to the version file. If the file that was supplied to `python-version-file` input doesn't exist, the action will fail with error.
 
 >In case both `python-version` and `python-version-file` inputs are supplied, the `python-version-file` input will be ignored due to its lower priority.