From 4bbb8bb9aeaab8e5b1d76a4c12a3c25854463839 Mon Sep 17 00:00:00 2001 From: Gisle Aune Date: Sat, 7 Jul 2018 13:10:54 +0200 Subject: [PATCH] Fixed typo in commenst for fictionalDate and editedDate resolvers --- resolver/chapter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resolver/chapter.go b/resolver/chapter.go index 199e9dc..972d2c1 100644 --- a/resolver/chapter.go +++ b/resolver/chapter.go @@ -55,12 +55,12 @@ func (r *ChapterResolver) CreatedDate() string { return r.C.CreatedDate.Format(time.RFC3339Nano) } -// FictionalDate resolves Chapter.createdDate +// FictionalDate resolves Chapter.fictionalDate func (r *ChapterResolver) FictionalDate() string { return r.C.FictionalDate.Format(time.RFC3339Nano) } -// EditedDate resolves Chapter.createdDate +// EditedDate resolves Chapter.editedDate func (r *ChapterResolver) EditedDate() string { return r.C.EditedDate.Format(time.RFC3339Nano) }