From c77f01ee977f2e619e55c51e45708cd1bca0d7ac Mon Sep 17 00:00:00 2001 From: Gregory Werbin Date: Wed, 11 Sep 2019 08:04:55 -0400 Subject: [PATCH] Fix solecism in docs --- docs/source/a-look-at-sessions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/a-look-at-sessions.rst b/docs/source/a-look-at-sessions.rst index 57e49d7..2b1cbb0 100644 --- a/docs/source/a-look-at-sessions.rst +++ b/docs/source/a-look-at-sessions.rst @@ -27,7 +27,7 @@ Well. That wasn't very exciting. Next, let's make a whole pile of requests, and !Important! Connection (un)limiting ___________________________________ -The ``Session``'s ``connections`` argument dictates the maximum number of concurrent connections asks will be allowed to make at any point during the ``Sessions`` lifespan. You *will* want to change the number of connections to a value that suits your needs and the server's limitations. If no data is publicly available to guide you here, air on the low side. +The ``Session``'s ``connections`` argument dictates the maximum number of concurrent connections asks will be allowed to make at any point during the ``Sessions`` lifespan. You *will* want to change the number of connections to a value that suits your needs and the server's limitations. If no data is publicly available to guide you here, err on the low side. **The default number of connections in the pool for a Session is a measly ONE.** If I arbitrarily picked a number greater than one it would be too high for 49% of people and too low for the other 49%. ::