Skip to content

Commit 78672bf

Browse files
committed
spelling: symmetric
Signed-off-by: Josh Soref <[email protected]>
1 parent 7d915fe commit 78672bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/mbeans/src/org/graalvm/visualvm/modules/mbeans/TableSorter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private void restoreListeners() {
9292
@SuppressWarnings("unchecked")
9393
private int compare(Object o1, Object o2) {
9494
// take care of the case where both o1 & o2 are null. Needed to keep
95-
// the method symetric. Without this quickSort gives surprising results.
95+
// the method symmetric. Without this quickSort gives surprising results.
9696
if (o1 == o2)
9797
return 0;
9898
if (o1==null)

0 commit comments

Comments
 (0)