From 74e9d6f6f484b66f9ec3e9eebc6e774587d9e85f Mon Sep 17 00:00:00 2001 From: lee Date: Wed, 19 Jun 2019 16:00:57 +0100 Subject: [PATCH] fix max readme from hackaton --- subjects/max.en.md | 10 +++++----- subjects/max.fr.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/subjects/max.en.md b/subjects/max.en.md index 5b6645261..a0ef04e89 100644 --- a/subjects/max.en.md +++ b/subjects/max.en.md @@ -23,12 +23,12 @@ package main import ( "fmt" - student ".." + piscine ".." ) func main() { arrInt := []int{23, 123, 1, 11, 55, 93} - max := student.Max(arrInt) + max := piscine.Max(arrInt) fmt.Println(max } ``` @@ -36,8 +36,8 @@ func main() { And its output : ```console -student@ubuntu:~/student/max$ go build -student@ubuntu:~/student/max$ ./max +student@ubuntu:~/piscine/test$ go build +student@ubuntu:~/piscine/test$ ./test 123 -student@ubuntu:~/student/max$ +student@ubuntu:~/piscine/test$ ``` diff --git a/subjects/max.fr.md b/subjects/max.fr.md index 5b6645261..a0ef04e89 100644 --- a/subjects/max.fr.md +++ b/subjects/max.fr.md @@ -23,12 +23,12 @@ package main import ( "fmt" - student ".." + piscine ".." ) func main() { arrInt := []int{23, 123, 1, 11, 55, 93} - max := student.Max(arrInt) + max := piscine.Max(arrInt) fmt.Println(max } ``` @@ -36,8 +36,8 @@ func main() { And its output : ```console -student@ubuntu:~/student/max$ go build -student@ubuntu:~/student/max$ ./max +student@ubuntu:~/piscine/test$ go build +student@ubuntu:~/piscine/test$ ./test 123 -student@ubuntu:~/student/max$ +student@ubuntu:~/piscine/test$ ```