From dbd627d25ea37e3cebe552df8b8c56e6ee8b491a Mon Sep 17 00:00:00 2001 From: Mariano Curti Date: Sun, 28 Apr 2024 16:04:25 +0200 Subject: [PATCH 1/3] Correct grammar in instructions.append.md --- exercises/practice/grade-school/.docs/instructions.append.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/practice/grade-school/.docs/instructions.append.md b/exercises/practice/grade-school/.docs/instructions.append.md index 5d12c3e9..7fc58b01 100644 --- a/exercises/practice/grade-school/.docs/instructions.append.md +++ b/exercises/practice/grade-school/.docs/instructions.append.md @@ -1,3 +1,5 @@ # Instructions append -It isn't strictly necessary to model students as a seperate object, you can use a convenient internal data strcture as the requirements are quite simple (and as long as it doesn't leak out into the results). Note: this exercise has been slightly modified from the problem-specification, as it makes more sense to seperate adding students and querying them in seperate methods (vs. having one method doing both, which feels less Pharo/Smalltalk like). \ No newline at end of file +It isn't strictly necessary to model students as a seperate object, you can use a convenient internal data strcture as the requirements are quite simple (and as long as it doesn't leak out into the results). + +Note: this exercise has been slightly modified from the problem-specification, as it makes more sense to separate adding students and querying them in separate methods (vs. having one method doing both, which feels less Pharo/Smalltalk like). From 979e1a4169e37a538123fa0f481e075a2368ccf2 Mon Sep 17 00:00:00 2001 From: Mariano Curti Date: Sun, 28 Apr 2024 20:27:37 +0200 Subject: [PATCH 2/3] Correct grammar in instructions.append.md --- exercises/practice/grade-school/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/grade-school/.docs/instructions.append.md b/exercises/practice/grade-school/.docs/instructions.append.md index 7fc58b01..82aa3e19 100644 --- a/exercises/practice/grade-school/.docs/instructions.append.md +++ b/exercises/practice/grade-school/.docs/instructions.append.md @@ -1,5 +1,5 @@ # Instructions append -It isn't strictly necessary to model students as a seperate object, you can use a convenient internal data strcture as the requirements are quite simple (and as long as it doesn't leak out into the results). +It isn't strictly necessary to model students as a separate object, you can use a convenient internal data structure as the requirements are quite simple (and as long as it doesn't leak out into the results). Note: this exercise has been slightly modified from the problem-specification, as it makes more sense to separate adding students and querying them in separate methods (vs. having one method doing both, which feels less Pharo/Smalltalk like). From 3ce4e966e049d8dbea404d35f9849373cedba4e9 Mon Sep 17 00:00:00 2001 From: Mariano Curti Date: Mon, 29 Apr 2024 15:20:31 +0200 Subject: [PATCH 3/3] Update exercises/practice/grade-school/.docs/instructions.append.md Co-authored-by: Erik Schierboom --- exercises/practice/grade-school/.docs/instructions.append.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/practice/grade-school/.docs/instructions.append.md b/exercises/practice/grade-school/.docs/instructions.append.md index 82aa3e19..b9a5cf17 100644 --- a/exercises/practice/grade-school/.docs/instructions.append.md +++ b/exercises/practice/grade-school/.docs/instructions.append.md @@ -2,4 +2,6 @@ It isn't strictly necessary to model students as a separate object, you can use a convenient internal data structure as the requirements are quite simple (and as long as it doesn't leak out into the results). -Note: this exercise has been slightly modified from the problem-specification, as it makes more sense to separate adding students and querying them in separate methods (vs. having one method doing both, which feels less Pharo/Smalltalk like). +~~~~exercism/note +This exercise has been slightly modified from the problem-specification, as it makes more sense to separate adding students and querying them in separate methods (vs. having one method doing both, which feels less Pharo/Smalltalk like). +~~~~