diff --git a/src/guide/v0_1_0/size-position.md b/src/guide/v0_1_0/size-position.md index 4282ded..b962e61 100644 --- a/src/guide/v0_1_0/size-position.md +++ b/src/guide/v0_1_0/size-position.md @@ -90,7 +90,7 @@ to control the child item's actual size and position. ``` > [!TIP] -> Quickshell has a builtin component @@Quickshell.Widgets.WrapperItem +> Quickshell has a built-in component @@Quickshell.Widgets.WrapperItem > that adds margins similar to the behavior above. ### Reducing boilerplate with Anchors @@ -234,4 +234,4 @@ In addition, Row and Column do not pixel-align members, meaning if you have a me with a fractional size, it will break the pixel alignment of members following it. In general, RowLayout and ColumnLayout should be used over Row and Column outside -of cases where pixel alignment is intentially broken. +of cases where pixel alignment is intentionally broken. diff --git a/src/guide/v0_2_0/qml-language.mdx b/src/guide/v0_2_0/qml-language.mdx index e23a5eb..8015b60 100644 --- a/src/guide/v0_2_0/qml-language.mdx +++ b/src/guide/v0_2_0/qml-language.mdx @@ -2,8 +2,6 @@ title: "QML Language" index: 10 --- -import Collapsible from "@components/Collapsible.astro"; - Quickshell is configured using the Qt Modeling Language, or QML. This page explains what you need to know about QML to start using Quickshell. @@ -125,7 +123,7 @@ import qs. [as ] - `path` is the path to the directory to import, relative to the folder `shell.qml` is in. `qs` can be used to import the shell root folder. Dotted paths can be used to access nested subfolders, e.g. `qs.foo.bar`. -- `Namepsace` is an optional namespace to import types from the module under. +- `Namespace` is an optional namespace to import types from the module under. > [!TIP] > Quickshell module imports are preferable to relative path imports as they are much more LSP friendly.