From ae4917dae544bf9f287484f706fe87446e4fab49 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Fri, 16 Aug 2019 10:21:29 -0400 Subject: [PATCH] Use correct comment character --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8040f89..41b5041 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ steps: - uses: actions/checkout@master - uses: actions/setup-python@v1 with: - python-version: '3.x' // Version range or exact version of a Python version to use, using semvers version range syntax. - architecture: 'x64' // (x64 or x86) + python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax. + architecture: 'x64' # (x64 or x86) - run: python my_script.py ```