batch

tiny golang package for pagination-style batching of slices
Log | Files | Refs | README | LICENSE

commit bd9f0b07db177509b38477def5a5a6e00bfcc7c5
parent 2ab574a5e7687eaf12d218282d605f7bccb21f8d
Author: Mark Wilkerson <mark@markwilkerson.me>
Date:   Tue, 20 Feb 2018 19:48:42 -0800

make gometalinter 100% happy

Diffstat:
MREADME.md | 2+-
Mbatch.go | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -2,7 +2,7 @@ import "github.com/markhuge/batch" -Batch provides helper functions for batching slices into sub slices of a +Package batch provides helper functions for batching slices into sub slices of a specified length. You could think of it as pagination for slices. ## Usage diff --git a/batch.go b/batch.go @@ -1,4 +1,4 @@ -// Batch provides helper functions for batching slices into sub slices of a +// Package batch provides helper functions for batching slices into sub slices of a // specified length. You could think of it as pagination for slices. package batch