From 42ba3e4764dbe70e98bbe7d68c9afa62a14f8e10 Mon Sep 17 00:00:00 2001 From: Glenn Reyes Date: Fri, 24 Feb 2017 09:30:19 +0100 Subject: [PATCH] docs: fix typo (#195) --- .README/rules/require-return-type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.README/rules/require-return-type.md b/.README/rules/require-return-type.md index 46c0460c..c4c091ec 100644 --- a/.README/rules/require-return-type.md +++ b/.README/rules/require-return-type.md @@ -6,7 +6,7 @@ Requires that functions have return type annotation. You can skip all arrow functions by providing the `excludeArrowFunctions` option with `true`. -Alternatively, you can want to exclude only concise arrow function (e.g. `() => 2`). Provide `excludeArrowFunctions` with `expressionsOnly` for this. +Alternatively, you can exclude a concise arrow function (e.g. `() => 2`). Provide `excludeArrowFunctions` with `expressionsOnly` for this. ```js {