summaryrefslogtreecommitdiff
path: root/test/go
diff options
context:
space:
mode:
authorKonrad Grochowski <hcorg@apache.org>2014-11-24 10:55:31 +0100
committerKonrad Grochowski <hcorg@apache.org>2014-11-24 10:55:31 +0100
commit3b5dacba44e4fa5c07c8b828d2f65215f9c91e34 (patch)
tree56fb134a0cd9cadbdd034af8de6ffdb31ae50ef8 /test/go
parenteab29a0da9eb775bb7e1e7cff6b4eeaecf237151 (diff)
downloadthrift-3b5dacba44e4fa5c07c8b828d2f65215f9c91e34.tar.gz
THRIFT-2849: spelling errors fixed using codespell tool
Client: All Patch: Anatol Pomozov This closes #281
Diffstat (limited to 'test/go')
-rw-r--r--test/go/src/common/printing_handler.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/go/src/common/printing_handler.go b/test/go/src/common/printing_handler.go
index e93621f8d..6cc15078f 100644
--- a/test/go/src/common/printing_handler.go
+++ b/test/go/src/common/printing_handler.go
@@ -91,7 +91,7 @@ func (p *printingHandler) TestDouble(thing float64) (r float64, err error) {
return thing, nil
}
-// Prints 'testStruct("{%s}")' where thing has been formatted into a string of comma seperated values
+// Prints 'testStruct("{%s}")' where thing has been formatted into a string of comma separated values
// @param Xtruct thing - the Xtruct to print
// @return Xtruct - returns the Xtruct 'thing'
//
@@ -115,7 +115,7 @@ func (p *printingHandler) TestNest(nest *Xtruct2) (r *Xtruct2, err error) {
}
// Prints 'testMap("{%s")' where thing has been formatted into a string of 'key => value' pairs
-// seperated by commas and new lines
+// separated by commas and new lines
// @param map<i32,i32> thing - the map<i32,i32> to print
// @return map<i32,i32> - returns the map<i32,i32> 'thing'
//
@@ -137,7 +137,7 @@ func (p *printingHandler) TestMap(thing map[int32]int32) (r map[int32]int32, err
}
// Prints 'testStringMap("{%s}")' where thing has been formatted into a string of 'key => value' pairs
-// seperated by commas and new lines
+// separated by commas and new lines
// @param map<string,string> thing - the map<string,string> to print
// @return map<string,string> - returns the map<string,string> 'thing'
//
@@ -159,7 +159,7 @@ func (p *printingHandler) TestStringMap(thing map[string]string) (r map[string]s
}
// Prints 'testSet("{%s}")' where thing has been formatted into a string of values
-// seperated by commas and new lines
+// separated by commas and new lines
// @param set<i32> thing - the set<i32> to print
// @return set<i32> - returns the set<i32> 'thing'
//
@@ -181,7 +181,7 @@ func (p *printingHandler) TestSet(thing map[int32]bool) (r map[int32]bool, err e
}
// Prints 'testList("{%s}")' where thing has been formatted into a string of values
-// seperated by commas and new lines
+// separated by commas and new lines
// @param list<i32> thing - the list<i32> to print
// @return list<i32> - returns the list<i32> 'thing'
//