Skip to content

Commit e9cf7fb

Browse files
committed
Merge pull request #11 from rud/nit/eradict-last-hashdict
Remove the last HashDict.new call (in a comment)
2 parents 691f2f6 + ecaf8d1 commit e9cf7fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nucleotide-count/example.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defmodule DNA do
2424
## Examples
2525
2626
iex> DNA.nucleotide_counts('AATAA')
27-
HashDict.new [{?A, 4}, {?T, 1}, {?C, 0}, {?G, 0}]
27+
%{?A => 4, ?T => 1, ?C => 0, ?G => 0}
2828
"""
2929

3030
def nucleotide_counts(strand) do

0 commit comments

Comments
 (0)