Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jazanne committed Nov 13, 2023
1 parent 144e001 commit 9713925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/references/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (fr ReferenceSummary) ExtinctKeys() []string {

func (fr ReferenceSummary) sortedKeys(keys map[string][]string) []string {
sortedKeys := make([]string, 0, len(keys))
for k := range fr.ExtinctFlags {
for k := range keys {
sortedKeys = append(sortedKeys, k)
}
sort.Strings(sortedKeys)
Expand Down

0 comments on commit 9713925

Please sign in to comment.