From ea15bd6ffe92039cd7cb784093e1928aa12f9425 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Tue, 11 Nov 2014 21:34:54 -0800 Subject: [PATCH] docs(commands) amend --- commands/command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/command.go b/commands/command.go index 479c232e7..60262b26b 100644 --- a/commands/command.go +++ b/commands/command.go @@ -42,8 +42,8 @@ type Command struct { Marshallers map[EncodingType]Marshaller // Type describes the type of the output of the Command's Run Function. - // Precisely, the value of Type is an instance of the return type of the - // Run Function. + // In precise terms, the value of Type is an instance of the return type of + // the Run Function. // // ie. If command Run returns &Block{}, then Command.Type == &Block{} Type interface{}