From 396fddc1979413890ea0e6e9d9f8b2c274094c8e Mon Sep 17 00:00:00 2001 From: James Meyers Date: Sat, 30 Apr 2022 01:34:22 -0700 Subject: [PATCH] docs: fix docs typo 'baed' -> 'based'. (#603) Co-authored-by: James Meyers --- docs-src/src/content/pages/advanced/typescript/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/src/content/pages/advanced/typescript/en.md b/docs-src/src/content/pages/advanced/typescript/en.md index 6a4c60dbc..3f4db1db5 100644 --- a/docs-src/src/content/pages/advanced/typescript/en.md +++ b/docs-src/src/content/pages/advanced/typescript/en.md @@ -183,7 +183,7 @@ export type AppAbility = Ability; export const AppAbility = Ability as AbilityClass; ``` -This simple pattern comes to TypeScript from Scala, and it's a way to pair together types and objects. In TypeScript, values and types live in a separate namespaces, this allows to use the same name for a type and a class. TypeScript understands which one to use baed on the context. +This simple pattern comes to TypeScript from Scala, and it's a way to pair together types and objects. In TypeScript, values and types live in a separate namespaces, this allows to use the same name for a type and a class. TypeScript understands which one to use based on the context. ## AbilityBuilder type inference