From 5095681ad0ec5c1bb88d57d8363bc05de5d18435 Mon Sep 17 00:00:00 2001 From: Harlow Ward Date: Sat, 15 Nov 2014 16:15:18 -0800 Subject: [PATCH] Group exported fields Godoc removes un-exported fields and puts a line-break in the documentation when exported fields and un-exported fields aren't grouped together. Will follow this standard going forward. --- redis_checkpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis_checkpoint.go b/redis_checkpoint.go index a4819c8..6a041c5 100644 --- a/redis_checkpoint.go +++ b/redis_checkpoint.go @@ -10,9 +10,9 @@ import ( // to checkpoint their progress. type RedisCheckpoint struct { AppName string + StreamName string client redis.Client sequenceNumber string - StreamName string } // Check whether a checkpoint for a particular Shard exists. Typically used to determine whether we should