From 66e06285b2cb9316abc0e36da73dd39da6781a7d Mon Sep 17 00:00:00 2001 From: Yin Jifeng Date: Mon, 17 Apr 2017 19:29:41 +0800 Subject: [PATCH] doc: update more Options default value --- options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options.go b/options.go index 29b6c5f..03c64c7 100644 --- a/options.go +++ b/options.go @@ -43,11 +43,11 @@ type Options struct { ReadTimeout time.Duration // Timeout for socket writes. If reached, commands will fail // with a timeout instead of blocking. - // Default is 3 seconds. + // Default is ReadTimeout. WriteTimeout time.Duration // Maximum number of socket connections. - // Default is 10 connections. + // Default is 100 connections. PoolSize int // Amount of time client waits for connection if all connections // are busy before returning an error.