diff --git a/Components-and-Hooks/HOC-Props-and-Custom-Hooks.md b/Components-and-Hooks/HOC-Props-and-Custom-Hooks.md
index 46400b2..06b84d7 100644
--- a/Components-and-Hooks/HOC-Props-and-Custom-Hooks.md
+++ b/Components-and-Hooks/HOC-Props-and-Custom-Hooks.md
@@ -583,7 +583,7 @@ function withStyles(Component) {
}
}
-const MyButton = () =
+const MyButton = () =>
const StyledButton = withStyles(MyButton)
```
@@ -778,8 +778,7 @@ In this case, we have a stateful Input component. However, the sibling component
```javascript
function Input({ value, handleChange }) {
- return;
- handleChange(e.target.value)} />;
+ return handleChange(e.target.value)} />;
}
export default function App() {
diff --git a/List-and-Virtualization/FlashList-Cell-Recycling-details.md b/List-and-Virtualization/FlashList-Cell-Recycling-details.md
index 4b4c900..f9ac135 100644
--- a/List-and-Virtualization/FlashList-Cell-Recycling-details.md
+++ b/List-and-Virtualization/FlashList-Cell-Recycling-details.md
@@ -137,7 +137,7 @@ Output of the Basic **FlashList** implementation (**IOS** + **Android**) in my A
## Important Props of FlashList
-Before diving deep, into the **performance improvement** of FlatList, let’s first understand some props of FlatList that will be used to improve the performance.
+Before diving deep, into the **performance improvement** of FlashList, let’s first understand some props of Flashlist that will be used to improve the performance.
### **_estimatedItemSize_**