From 5eaebb8bb331a4673a3313286eec1f2af900b80d Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Sat, 22 Feb 2020 13:46:23 +0000 Subject: [PATCH] fix typo --- core/ast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ast.go b/core/ast.go index f65a019..c49301f 100644 --- a/core/ast.go +++ b/core/ast.go @@ -304,7 +304,7 @@ type ( // A DoubleLit is a literal Value of type Double. DoubleLit float64 - // A IntegerLit is a literal Value of type Integer. + // An IntegerLit is a literal Value of type Integer. IntegerLit int // Some represents a Value which is present in an Optional type.