Skip to content

Commit 39b7311

Browse files
authored
Removes redundant internal modifier.
1 parent 92f67b5 commit 39b7311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Heap/Heap.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
public struct Heap<T> {
77

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

1111
/**
1212
* Determines how to compare two nodes in the heap.

0 commit comments

Comments
 (0)