Skip to content

Commit

Permalink
Removes redundant internal modifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinlauKL authored Jan 9, 2018
1 parent 92f67b5 commit 39b7311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Heap/Heap.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public struct Heap<T> {

/** The array that stores the heap's nodes. */
internal var nodes = [T]()
var nodes = [T]()

/**
* Determines how to compare two nodes in the heap.
Expand Down

0 comments on commit 39b7311

Please sign in to comment.