diff --git a/src/content/docs/guide/first-widget.mdx b/src/content/docs/guide/first-widget.mdx
index 9754222..75ba83c 100644
--- a/src/content/docs/guide/first-widget.mdx
+++ b/src/content/docs/guide/first-widget.mdx
@@ -193,7 +193,7 @@ To organize our code, we will create a `StatusBar` class that inherits from the
Understanding the Arguments
Let's take a closer look at the arguments used in the `StatusBar` class:
- - `layer`: Ensures that your bar stays visible above any regular applications (except when they are in fullscreen mode. use the `overlay` layer type place it on top of everything). for Hyprland users, to see a list of open layers, use the `hyprctl layers` command.
+ - `layer`: Ensures that your bar stays visible above any regular applications (except when they are in fullscreen mode. use the `overlay` layer type to place it on top of everything). For Hyprland users, to see a list of open layers, use the `hyprctl layers` command.
- `anchor` (Wayland only): Determines the bar's position. For this guide, we want our bar to be at the top, extending from left to right, so we use `left top right`.
- `exclusivity` (Wayland only): Ensures that the bar has its own dedicated space and is not overlapped by other windows or widgets.