From 9be2da6c135ed3993676a1b3052b30a75a2d95c2 Mon Sep 17 00:00:00 2001 From: Augusto Date: Mon, 17 Jun 2019 18:50:15 +0100 Subject: [PATCH] Changed the instructions to respect the standard --- subjects/displayfile.en.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/displayfile.en.md b/subjects/displayfile.en.md index 1f1bce848..f72987fff 100644 --- a/subjects/displayfile.en.md +++ b/subjects/displayfile.en.md @@ -1,4 +1,4 @@ -## Display File +## displayfile ### Instructions @@ -15,11 +15,11 @@ Write a program that displays, on the standard output, only the content of the f ### Output: ```console -student@ubuntu:~/student/test$ go build -student@ubuntu:~/student/test$ ./test +student@ubuntu:~/student/displayfile$ go build +student@ubuntu:~/student/displayfile$ ./displayfile File name missing -student@ubuntu:~/student/test$ ./test quest8.txt main.go +student@ubuntu:~/student/displayfile$ ./displayfile quest8.txt main.go Too many arguments -student@ubuntu:~/student/test$ ./test quest8.txt +student@ubuntu:~/student/displayfile$ ./displayfile quest8.txt Almost there!! ```