diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 2b17bb7a3..b11c894ef 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,3 +1,5 @@ # Instructions Append +## Track specific instructions + You must return the anagrams in the same order as they are listed in the candidate words. diff --git a/exercises/practice/complex-numbers/.docs/instructions.append.md b/exercises/practice/complex-numbers/.docs/instructions.append.md index 0f4936665..f7ce00f40 100644 --- a/exercises/practice/complex-numbers/.docs/instructions.append.md +++ b/exercises/practice/complex-numbers/.docs/instructions.append.md @@ -1,4 +1,6 @@ -# Append +# Instructions append + +## Track specific instructions You will have to implement your own equality operator for the `ComplexNumber` object. This will pose the challenge of comparing two floating point numbers. diff --git a/exercises/practice/knapsack/.docs/instructions.append.md b/exercises/practice/knapsack/.docs/instructions.append.md index 9a440b62d..971412d44 100644 --- a/exercises/practice/knapsack/.docs/instructions.append.md +++ b/exercises/practice/knapsack/.docs/instructions.append.md @@ -1,3 +1,5 @@ -## Item representation +# Instructions append -The items are represented by the `Item` struct in `Item.swift`. \ No newline at end of file +## Track specific instructions + +The items are represented by the `Item` struct in `Item.swift`. diff --git a/exercises/practice/roman-numerals/.docs/instructions.append.md b/exercises/practice/roman-numerals/.docs/instructions.append.md index 489d47ec7..a3ae4b855 100644 --- a/exercises/practice/roman-numerals/.docs/instructions.append.md +++ b/exercises/practice/roman-numerals/.docs/instructions.append.md @@ -1,4 +1,6 @@ -## Adding method to the Int structure +# Instructions append + +## Track specific instructions This exercise focuses on adding methods to the `Int` structure in Swift. This is easiest done through using [extensions][extensions]. diff --git a/exercises/practice/strain/.docs/instructions.append.md b/exercises/practice/strain/.docs/instructions.append.md index a6b64d979..b2235b96b 100644 --- a/exercises/practice/strain/.docs/instructions.append.md +++ b/exercises/practice/strain/.docs/instructions.append.md @@ -1,4 +1,6 @@ -## Adding method to the Array structure +# Instructions append + +## Track specific instructions This exercise focuses on adding methods to the `Array` structure in Swift. This is easiest done through using [extensions][extensions].