diff options
| author | Pratik Mallya <pratik.mallya@liveramp.com> | 2020-02-17 23:25:41 -0800 |
|---|---|---|
| committer | Pratik Mallya <pratik.mallya@liveramp.com> | 2020-02-17 23:25:41 -0800 |
| commit | 3c24a1211aa46efe1b0e29157b4c4bf9d28d98fa (patch) | |
| tree | 72014c9d64eb18a3a806844eebc28f3418e14fa9 | |
| parent | cec773f974919d4b041122eabb972b4dbc2452df (diff) | |
FIX: a couple of typos
| -rw-r--r-- | diagnostic.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/diagnostic.go b/diagnostic.go index c320961..c80535b 100644 --- a/diagnostic.go +++ b/diagnostic.go @@ -22,14 +22,14 @@ const ( ) // Diagnostic represents information to be presented to a user about an -// error or anomoly in parsing or evaluating configuration. +// error or anomaly in parsing or evaluating configuration. type Diagnostic struct { Severity DiagnosticSeverity // Summary and Detail contain the English-language description of the // problem. Summary is a terse description of the general problem and // detail is a more elaborate, often-multi-sentence description of - // the probem and what might be done to solve it. + // the problem and what might be done to solve it. Summary string Detail string |
