mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 07:25:27 +02:00
13 lines
245 B
Go
13 lines
245 B
Go
package shared
|
|
|
|
import "fmt"
|
|
|
|
type DuplicateKeyEntry struct {
|
|
AlreadyFoundAt uint32
|
|
Key string
|
|
}
|
|
|
|
func (d DuplicateKeyEntry) Error() string {
|
|
return fmt.Sprintf("Alias '%s' already defined on line %d", d.Key, d.AlreadyFoundAt+1)
|
|
}
|