From 99866aed94ed5e8d9f6002acabfcc8811277e95f Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Fri, 18 May 2018 14:35:30 -0600 Subject: [PATCH] Clarify documentation a bit. --- doc/src/module.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/src/module.rst b/doc/src/module.rst index 85f2be5..a21aca3 100644 --- a/doc/src/module.rst +++ b/doc/src/module.rst @@ -220,7 +220,7 @@ Module Interface the length of time (in seconds) after which idle sessions in the pool are terminated. Note that termination only occurs when another session is released back to the pool. The default value of 0 means that no idle - are terminated. + sessions are terminated. The waitTimeout parameter is expected to be an integer, if specified, and sets the length of time (in milliseconds) that the caller should wait for @@ -229,12 +229,12 @@ Module Interface :data:`cx_Oracle.SPOOL_ATTRVAL_TIMEDWAIT`. The maxLifetimeSession parameter is expected to be an integer, if - specified, and sets the length of time (in seconds) a session may remain - in the pool. Sessions in the pool are terminated after they have been in - the pool for the specified period of time. Note that termination only - occurs when another session is released back to the pool. The default value - is 0 which means that there is no maximum length of time that a session may - exist in the pool. + specified, and sets the maximum length of time (in seconds) a session may + exist in the pool. Sessions in the pool are terminated after they have + been in the pool for the specified period of time. Note that termination + only occurs when another session is released back to the pool. The default + value is 0 which means that there is no maximum length of time that a + session may exist in the pool. .. note::