From 266519c8d253f9bfb25f6296fbcdd411ba856ba0 Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Fri, 27 Sep 2013 21:56:42 -0700 Subject: [PATCH] fix typo --- transporter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transporter.go b/transporter.go index 6a4302013..eb4308377 100644 --- a/transporter.go +++ b/transporter.go @@ -21,8 +21,8 @@ var dailTimeout = 3 * HeartbeatTimeout // This should not exceed 3 * RTT + RTT var responseHeaderTimeout = 4 * HeartbeatTimeout -// Timeout for actually read the response body from the server -// This hould not exceed election timeout +// Timeout for receiving the response body from the server +// This should not exceed election timeout var tranTimeout = ElectionTimeout // Transporter layer for communication between raft nodes