Rename session name to session ID

This commit is contained in:
Seth Vargo 2016-09-26 13:31:26 -07:00
parent 81a28ffd38
commit 7843f284e0
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@ type KVPair struct {
// base64 encoded upon transport. // base64 encoded upon transport.
Value []byte 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 // interactions with this key over the same session must specify the same
// session name. // session ID.
Session string Session string
} }