Skip to content

Commit 26625ce

Browse files
petremBNAndras
andauthored
Update exercises/practice/rna-transcription/.approaches/dictionary-join/content.md
Co-authored-by: András B Nagy <20251272+BNAndras@users.noreply.github.com>
1 parent 2e8a4e4 commit 26625ce

File tree

1 file changed

+1
-1
lines changed
  • exercises/practice/rna-transcription/.approaches/dictionary-join

1 file changed

+1
-1
lines changed

exercises/practice/rna-transcription/.approaches/dictionary-join/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ and is passed the list created from a [generator expression][generator-expressio
2121
The generator expression iterates each character in the input,
2222
looks up the DNA character in the look-up dictionary, and outputs its matching RNA character as an element in the list.
2323

24-
The `join()` method collects the RNA characters back into a string.
24+
The `join()` method collects the RNA characters into a string.
2525
Since an empty string is the separator for the `join()`, there are no spaces between the RNA characters in the string.
2626

2727
A generator expression is similar to a [list comprehension][list-comprehension], but instead of creating a list, it returns a generator, and iterating that generator yields the elements on the fly.

0 commit comments

Comments
 (0)