diff --git a/docs/docs/contributor/frontend/advanced/best-practices.mdx b/docs/docs/contributor/frontend/advanced/best-practices.mdx
index 97f9a4edc..a1cdcac6f 100644
--- a/docs/docs/contributor/frontend/advanced/best-practices.mdx
+++ b/docs/docs/contributor/frontend/advanced/best-practices.mdx
@@ -237,7 +237,7 @@ const Form = () => ;
## Component as props
-Try as much as possible to pass uninstanciated components as props, so chilren can decide on their own of what props they need to pass.
+Try as much as possible to pass uninstanciated components as props, so children can decide on their own of what props they need to pass.
The most common example for that is icon components:
@@ -256,7 +256,7 @@ const MyComponent = ({ MyIcon }: { MyIcon: IconComponent }) => {
};
```
-For React to understand that the component is a component, you need to use PascalCase, to later instanciate it with ``
+For React to understand that the component is a component, you need to use PascalCase, to later instantiate it with ``
## Prop Drilling: Keep It Minimal