Skip to content

Commit

Permalink
fix colons after notes
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Mar 11, 2023
1 parent 14fb414 commit 6729d46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/bundler/bundler.go
Original file line number Diff line number Diff line change
Expand Up @@ -2095,9 +2095,9 @@ func (s *scanner) processScannedFiles(entryPointMeta []graph.EntryPoint) []scann
} else {
var text string
if data.IsSideEffectsArrayInJSON {
text = "It was excluded from the \"sideEffects\" array in the enclosing \"package.json\" file"
text = "It was excluded from the \"sideEffects\" array in the enclosing \"package.json\" file:"
} else {
text = "\"sideEffects\" is false in the enclosing \"package.json\" file"
text = "\"sideEffects\" is false in the enclosing \"package.json\" file:"
}
tracker := logger.MakeLineColumnTracker(data.Source)
notes = append(notes, tracker.MsgData(data.Range, text))
Expand Down

0 comments on commit 6729d46

Please sign in to comment.