Fix more golint warnings.
[arvados.git] / lib / controller / api / routable.go
index 3003ea2df76035cac71ae8bc8916c3e7eaa0a7d4..f8874488299a0ec79df6bbe25b8b555b4279db42 100644 (file)
@@ -18,7 +18,7 @@ type RoutableFunc func(ctx context.Context, opts interface{}) (interface{}, erro
 
 type RoutableFuncWrapper func(RoutableFunc) RoutableFunc
 
-// ComposeWrappers(w1, w2, w3, ...) returns a RoutableFuncWrapper that
+// ComposeWrappers (w1, w2, w3, ...) returns a RoutableFuncWrapper that
 // composes w1, w2, w3, ... such that w1 is the outermost wrapper.
 func ComposeWrappers(wraps ...RoutableFuncWrapper) RoutableFuncWrapper {
        return func(f RoutableFunc) RoutableFunc {