Skip to content

Commit 9bfbfd8

Browse files
escape $ due to deployment warning
1 parent 4e5ae14 commit 9bfbfd8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/src/rosalind/06-hamm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ testseq1 = string(randdnaseq(100_000)) # this is defined in BioSequences
171171
testseq2 = string(randdnaseq(100_000))
172172

173173

174-
@benchmark hamming($testseq1, $testseq2)
174+
@benchmark hamming(\$testseq1, \$testseq2)
175175

176-
@benchmark BioAlignments.hamming_distance(Int64, $testseq1, $testseq2)
176+
@benchmark BioAlignments.hamming_distance(Int64, \$testseq1, \$testseq2)
177177

178-
@benchmark Distances.hamming($testseq1, $testseq2)
178+
@benchmark Distances.hamming(\$testseq1, \$testseq2)
179179
```
180180

181181
The BioAlignments method takes up a much larger amount of memory,

0 commit comments

Comments
 (0)