From 69c832a3acfa63f4a9ecf130bc1086476de366f9 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 31 Mar 2014 10:01:15 -0700 Subject: [PATCH] More edits. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index efd5359..1a573a1 100644 --- a/README.md +++ b/README.md @@ -482,9 +482,9 @@ JMustache is internally thread safe with the following caveats: one another, they'll simply both resolve the variable instead of one resolving the variable and the other using the cached resolution. -So the executive summary is: it is safe to share a `Mustache.Compiler` instance across threads to -compile templates, and if you pass immutable data to your templates when executing and any helper -classes you supply are thread-safe, then it is safe to share a `Template` instance across threads, +So the executive summary is: as long as all helper classes you supply are thread-safe, it is safe +to share a `Mustache.Compiler` instance across threads to compile templates. If you pass immutable +data to your templates when executing, it is safe to share a `Template` instance across threads, with multiple threads executing the template simultaneously. Limitations