From 44de9d7e1aa2fcae475a97b8f597b7d8094566b2 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <6d0847b9@opayq.com> Date: Wed, 6 Mar 2019 10:04:37 +0200 Subject: [PATCH] Docs: Fix typo in func-name-matching rule docs (#11484) --- docs/rules/func-name-matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/func-name-matching.md b/docs/rules/func-name-matching.md index 870510290b5..53be2a09987 100644 --- a/docs/rules/func-name-matching.md +++ b/docs/rules/func-name-matching.md @@ -91,7 +91,7 @@ This rule takes an optional string of "always" or "never" (when omitted, it defa ### considerPropertyDescriptor -A boolean value that defaults to `false`. If `considerPropertyDescriptor` is set to true, the check will take into account the use `Object.create`, `Object.defineProperty`, `Object.defineProperties`, and `Reflect.defineProperty`. +A boolean value that defaults to `false`. If `considerPropertyDescriptor` is set to true, the check will take into account the use of `Object.create`, `Object.defineProperty`, `Object.defineProperties`, and `Reflect.defineProperty`. Examples of **correct** code for the `{ considerPropertyDescriptor: true }` option: