Skip to content

Commit

Permalink
renaming race to raceutil
Browse files Browse the repository at this point in the history
  • Loading branch information
Mzack9999 committed Nov 11, 2022
1 parent 6d78608 commit 21e6ad5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions race/norace.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//go:build !race

// Package israce reports if the Go race detector is enabled.
package israce
// Package raceutil reports if the Go race detector is enabled.
package raceutil

// Enabled reports if the race detector is enabled.
const Enabled = false
4 changes: 2 additions & 2 deletions race/race.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//go:build race

// Package israce reports if the Go race detector is enabled.
package israce
// Package raceutil reports if the Go race detector is enabled.
package raceutil

// Enabled reports if the race detector is enabled.
const Enabled = true

0 comments on commit 21e6ad5

Please sign in to comment.