From 224f1620eb2ef9794e6d14b03945dd94788b9756 Mon Sep 17 00:00:00 2001 From: Matchlighter Date: Thu, 16 Mar 2023 14:00:59 -0600 Subject: [PATCH] Update docs/enabling-decorators.md Co-authored-by: Rick Pastoor --- docs/enabling-decorators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/enabling-decorators.md b/docs/enabling-decorators.md index 596b1c9821..1b15f40099 100644 --- a/docs/enabling-decorators.md +++ b/docs/enabling-decorators.md @@ -68,7 +68,7 @@ We do not recommend new codebases that use MobX use legacy decorators until the ## MobX Core decorators {🚀} -MobX before version 6 encouraged the use of ES.next decorators to mark things as `observable`, `computed` and `action`. While MobX 6 recomneds against using these decorators (an instead using [`makeObservable` / `makeAutoObservable`](observable-state.md)), it is still possible. +MobX before version 6 encouraged the use of ES.next decorators to mark things as `observable`, `computed` and `action`. While MobX 6 recommends against using these decorators (and instead using [`makeObservable` / `makeAutoObservable`](observable-state.md)), it is still possible. ```javascript import { makeObservable, observable, computed, action } from "mobx"