From bf2af70045389629def42b7a076d044e91e459e9 Mon Sep 17 00:00:00 2001 From: zhantolin <52797876+zhantolin@users.noreply.github.com> Date: Thu, 21 Nov 2019 23:19:48 +0600 Subject: [PATCH] test -> sortparams --- subjects/sortparams.en.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/sortparams.en.md b/subjects/sortparams.en.md index eb586885f..06dcf0078 100644 --- a/subjects/sortparams.en.md +++ b/subjects/sortparams.en.md @@ -7,8 +7,8 @@ Write a **program** that prints the arguments received in the command line in AS Example of output : ```console -student@ubuntu:~/piscine-go/test$ go build -student@ubuntu:~/piscine-go/test$ ./sortparams 1 a 2 A 3 b 4 C +student@ubuntu:~/piscine-go/sortparams$ go build +student@ubuntu:~/piscine-go/sortparams$ ./sortparams 1 a 2 A 3 b 4 C 1 2 3 @@ -17,5 +17,5 @@ A C a b -student@ubuntu:~/piscine-go/test$ +student@ubuntu:~/piscine-go/sortparams$ ```