diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/stern-brocot-sequence.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/stern-brocot-sequence.md index e8acb84c3c..219db4002c 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/stern-brocot-sequence.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/stern-brocot-sequence.md @@ -36,7 +36,7 @@ For this task, the Stern-Brocot sequence is to be generated by an algorithm simi # --instructions-- -Create a function that returns the $ n^{th} $ member of the sequence using the method outlined above. +Create a function that returns the position in the Stern-Brocot sequence at which $ n $ is first encountered, where the sequence is generated with the method outlined above. Note that this sequence uses 1 based indexing. # --hints--