From 8d781bd7f63db4c2e4901c3b85a25c421f1f1a91 Mon Sep 17 00:00:00 2001 From: nprimo Date: Wed, 17 Apr 2024 12:02:18 +0100 Subject: [PATCH] docs(git): update audit to be consistent with subject --- subjects/git/audit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/git/audit/README.md b/subjects/git/audit/README.md index 47b8b6c4..a91db62f 100644 --- a/subjects/git/audit/README.md +++ b/subjects/git/audit/README.md @@ -12,13 +12,13 @@ ###### Did the student navigate to the `work` directory and create a subdirectory named `hello`? -###### Did the student generate a file named `hello.sh` with the content `puts "Hello, World"` inside the `hello` directory? +###### Did the student generate a file named `hello.sh` with the content `echo "Hello, World"` inside the `hello` directory? ###### Did the student initialize a Git repository in the `hello` directory? ###### Did the student use the `git status` command to check the status of the repository? -###### Did the student modify the `hello.sh` file content with the provided `puts "Hello, #{ARGV.first}!"`? +###### Did the student modify the `hello.sh` file content with the provided `echo "Hello, $1"`? ###### Did the student stage the modified `hello.sh` file, commit the changes to the repository, and ensure that the working tree is clean afterward?