Polish Slice doc
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 23 Mar 2015 11:42:42 +0000 (12:42 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 23 Mar 2015 11:42:54 +0000 (12:42 +0100)
tpl/template.go

index 1f899faf736b0291ee9a5eb6749cea32ec83b19d..367703f93695b0307b8ce7595b8b092bcaf952ae 100644 (file)
@@ -189,8 +189,9 @@ func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
 }
 
 // Slicing in Slice is done by specifying a half-open range with
-// two indices, lower and upper. 1 and 4 creates a slice including elements 1 through 3.
-// The start and/or end indices can be omitted by setting one or both of them to -1; they default to zero and the slice's length respectively
+// two indices, start and end. 1 and 4 creates a slice including elements 1 through 3.
+// The start and/or end indices can be omitted by setting one or both of them to -1;
+// they default to zero and the slice's length respectively
 func Slice(a interface{}, start, end int) (string, error) {
        aStr, err := cast.ToStringE(a)
        if err != nil {