Merge pull request #345 from pratikmallya/fix-typo

FIX: a couple of minor typos
This commit is contained in:
Radek Simko 2020-05-27 10:34:17 +01:00 committed by GitHub
commit 92aa0d1272

View File

@ -22,14 +22,14 @@ const (
) )
// Diagnostic represents information to be presented to a user about an // 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 { type Diagnostic struct {
Severity DiagnosticSeverity Severity DiagnosticSeverity
// Summary and Detail contain the English-language description of the // Summary and Detail contain the English-language description of the
// problem. Summary is a terse description of the general problem and // problem. Summary is a terse description of the general problem and
// detail is a more elaborate, often-multi-sentence description of // 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 Summary string
Detail string Detail string