From 39e0708be1b57b5527f4c79708b25067ba50f86e Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Mon, 13 Feb 2017 11:31:04 -0800 Subject: fix typo in comment doc --- system/item/item.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system/item') diff --git a/system/item/item.go b/system/item/item.go index 4a219c8..5b41693 100644 --- a/system/item/item.go +++ b/system/item/item.go @@ -65,7 +65,7 @@ type Hideable interface { // Pushable lets a user define which values of certain struct fields are // 'pushed' down to a client via HTTP/2 Server Push. All items in the slice -// should be the json tag names of the struct fields to which they coorespond. +// should be the json tag names of the struct fields to which they correspond. type Pushable interface { // the values contained by fields returned by Push must strictly be URL paths Push() []string @@ -74,7 +74,7 @@ type Pushable interface { // Omittable lets a user define certin fields within a content struct to remove // from an API response. Helpful when you want data in the CMS, but not entirely // shown or available from the content API. All items in the slice should be the -// json tag names of the struct fields to which they coorespond. +// json tag names of the struct fields to which they correspond. type Omittable interface { Omit() []string } -- cgit v1.2.3