Problem
README.md line 54 documents the clone step as git clone 20-questions, which is missing the repository URL and fails when a new contributor runs it verbatim.
Steps
- Follow README section
### Clone:
cd
mkdir code
cd code
git clone 20-questions
Expected
Repository is cloned into ~/code/text-generator.io (or 20-questions if that is the intended directory alias).
Actual
fatal: repository '20-questions' does not exist
Environment
- File:
README.md:54 (branch main, commit as of 2026-05-08 push)
- Python target:
.python-version = 3.12.7
git >= 2.30 (any recent version reproduces)
Suggested fix: replace with git clone https://github.com/TextGeneratorio/text-generator.io.git 20-questions so the downstream $HOME/code/20-questions paths on lines 61-62 remain consistent.
Thanks for maintaining TextGeneratorio/text-generator.io!
Problem
README.md line 54 documents the clone step as
git clone 20-questions, which is missing the repository URL and fails when a new contributor runs it verbatim.Steps
### Clone:Expected
Repository is cloned into
~/code/text-generator.io(or20-questionsif that is the intended directory alias).Actual
Environment
README.md:54(branchmain, commit as of 2026-05-08 push).python-version= 3.12.7git>= 2.30 (any recent version reproduces)Suggested fix: replace with
git clone https://github.com/TextGeneratorio/text-generator.io.git 20-questionsso the downstream$HOME/code/20-questionspaths on lines 61-62 remain consistent.Thanks for maintaining TextGeneratorio/text-generator.io!