From 7843f284e08b309455b1f8e7cee4a5a62957375d Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 26 Sep 2016 13:31:26 -0700 Subject: [PATCH] Rename session name to session ID --- api/kv.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/kv.go b/api/kv.go index e1496bc8d..e959937c0 100644 --- a/api/kv.go +++ b/api/kv.go @@ -36,9 +36,9 @@ type KVPair struct { // base64 encoded upon transport. Value []byte - // Session is a string representing the name of the session. Any other + // Session is a string representing the ID of the session. Any othe // interactions with this key over the same session must specify the same - // session name. + // session ID. Session string }