From 147ee1b810a4a15ce77ab61d7627d5a6c572abe0 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Sun, 5 Mar 2017 14:20:36 +0100 Subject: [PATCH] Fix typos --- CONTRIBUTING.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 23fd768..15ac246 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ BUGS - Check if the issue has already been filed here: [jsfmt issues](https://github.com/rdio/jsfmt/issues/) - If an issue already exists let us know if you're also experiencing the same issue and any additional details you can provide. -- If its a new issue, please file a new issue with as much detail as possible including steps to reproduce the problem. +- If it's a new issue, please file a new issue with as much detail as possible including steps to reproduce the problem. CONTRIBUTING CHANGES diff --git a/README.md b/README.md index 2bd41b8..f8a897e 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Both `pattern` and `replacement` must be valid JavaScript. In `pattern`, single- ### Example -Rewrite occurences of `_.reduce` to use native reduce: +Rewrite occurrences of `_.reduce` to use native reduce: jsfmt --rewrite "_.reduce(a, b, c) -> a.reduce(b, c)" reduce.js @@ -86,7 +86,7 @@ The `--search` flag allows searching through a JavaScript's AST. The search rule ### Example -Find occurences of `_.reduce`: +Find occurrences of `_.reduce`: jsfmt --search "_.reduce(a, b, c)" reduce.js