From 93c19d9899e85583f25224a72f85c925adc6d7d3 Mon Sep 17 00:00:00 2001 From: Iuri Fernandes Date: Sun, 23 Jun 2013 13:26:47 -0300 Subject: [PATCH] Fix policies explanation for default triggers and some typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ef76ded..1b62368 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,8 @@ garbas/vim-snipmate and cope with the minor bugs found in the engine. Policies / for contributors =========================== -some snippets are useful for all languages, so let's try to have the same -triggers for all languages: +Some snippets are useful for almost all languages, so let's try to have the same +triggers for them: ``` if : if without else @@ -69,14 +69,14 @@ aliasing. Then you can remap "else" to "el" or the like. Don't add stupid placeholder default texts like ``` -if (${1:condition){ +if (${1:condition}){ ${2:some code here} } ``` instead use: ``` -if (${1){ +if (${1}){ ${2} } ```