From 305ccd5df962eb7d2c9e3d95cfd8eeb280f949e5 Mon Sep 17 00:00:00 2001 From: kekumu Date: Mon, 19 May 2014 01:48:11 -0400 Subject: [PATCH] Update advanced_foreword.rst I think the doc is supposed to read, "Because of that, Flask has a few design choices that some people might find surprising or unorthodox." Otherwise, it could possibly mean, "Because of that, Flask has few design choices that people would find surprising or unorthodox." Or perhaps even less ambiguous, "Because of that, Flask has few surprising or unorthodox design choices." --- docs/advanced_foreword.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_foreword.rst b/docs/advanced_foreword.rst index 53df8175..9f7a73bd 100644 --- a/docs/advanced_foreword.rst +++ b/docs/advanced_foreword.rst @@ -8,7 +8,7 @@ Thread-Locals in Flask One of the design decisions in Flask was that simple tasks should be simple; they should not take a lot of code and yet they should not limit you. Because -of that, Flask has few design choices that some people might find surprising or +of that, Flask has a few design choices that some people might find surprising or unorthodox. For example, Flask uses thread-local objects internally so that you don’t have to pass objects around from function to function within a request in order to stay threadsafe. This approach is convenient, but requires a valid