From 5d84249b54992f61066d66dc57c9cc0cacf3d328 Mon Sep 17 00:00:00 2001 From: raganwald Date: Sun, 10 Feb 2013 18:34:55 -0800 Subject: [PATCH] 1. "which" is for parenthetical remarks, "that" is for explanatory remarks. 2. It's the code your users wrote, not a server your users wrote. --- Home.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index 71823ce..daf5da5 100644 --- a/Home.md +++ b/Home.md @@ -3,8 +3,8 @@ Liquid is a template engine which was crafted for very specific requirements * It has to have simple markup and beautiful results. Template engines which don't produce good looking results are no fun to use. * It needs to be non-evaling and secure. Liquid templates are made so that users - can't edit them. You don't want to run code on your server which your users - wrote. + can't edit them. You don't want to run code that your users + wrote on your server. * It has to be stateless. The compile and render steps have to be separate, so that the expensive parsing and compiling can be done once; later on, you can just render it by passing in a hash with local variables and objects.