Skip to content

Commit

Permalink
Corrected a comment in graph.go
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilDesai27 authored Oct 29, 2019
1 parent 40eb135 commit 4cc2ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type Iterator interface {
Visit(v int, do func(w int, c int64) (skip bool)) (aborted bool)
}

// The maximum and minum value of an edge cost.
// The maximum and minimum value of an edge cost.
const (
Max int64 = 1<<63 - 1
Min int64 = -1 << 63
Expand Down

0 comments on commit 4cc2ea6

Please sign in to comment.