Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add line range for Go Bubble Sort import
  • Loading branch information
chin123 committed Jun 28, 2018
commit 6e60716b624f11e89fa08de064c760920b69ca07
2 changes: 1 addition & 1 deletion chapters/sorting_searching/bubble/bubble_sort.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This means that we need to go through the vector $$\mathcal{O}(n^2)$$ times with
{% sample lang="d" %}
[import, lang:"d"](code/d/bubble_sort.d)
{% sample lang="go" %}
[import, lang:"go"](code/go/bubbleSort.go)
[import:7-21, lang:"go"](code/go/bubbleSort.go)
{% endmethod %}

... And that's it for the simplest bubble sort method.
Expand Down