Skip to content

Commit 44430dc

Browse files
livingsilver94ermo
authored andcommitted
Fix typos
1 parent b04c9b8 commit 44430dc

9 files changed

Lines changed: 25 additions & 7 deletions

File tree

.typos.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SPDX-FileCopyrightText: 2026 AerynOS Developers
2+
# SPDX-License-Identifier: MPL-2.0
3+
4+
[default]
5+
extend-ignore-re = [
6+
# Ignore blocks between `spellchecker:off` and `spellchecker:on`
7+
"spellchecker:off.*?\\n*.*spellchecker:on",
8+
]
9+
10+
[files]
11+
extend-exclude = ["/package-lock.json"]

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default defineConfig({
115115
{ slug: "users/getting-started" },
116116
{ slug: "users/getting-started/requirements" },
117117
{ slug: "users/getting-started/downloading" },
118-
{ slug: "users/getting-started/creating-the-live-enviroment" },
118+
{ slug: "users/getting-started/creating-the-live-environment" },
119119
{ slug: "users/getting-started/booting-the-live-environment" },
120120
{ slug: "users/getting-started/installing-aerynos" },
121121
],

src/components/DirectoryList.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
/**
33
*
4-
* Uses the starlight sidebar to geneate a index page
4+
* Uses the starlight sidebar to generate a index page
55
*
66
*/
77
import { getCollection } from "astro:content";

src/content/docs/Developers/Stone/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Stone Format
33
lastUpdated: 2026-04-19T00:00:00Z
4-
description: An overwiew of the Stone format
4+
description: An overview of the Stone format
55
---
66
import DirectoryList from '@components/DirectoryList.astro';
77

src/content/docs/FAQ/general-faq.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ description: General FAQ
88

99
### What does AerynOS mean and how do I pronounce it?
1010

11-
AerynOS is a stylized spelling of "Erin", alluding to the project's Irish roots. It is pronounced exactly the same as "Erin" - "AIR-in" OS. It's also a play on "aer" and the phonetic "air" sound, indicative of our desire to produce an open, trusted and high-performance operating system.
11+
AerynOS is a stylized spelling of "Erin", alluding to the project's Irish roots.
12+
It is pronounced exactly the same as "Erin" - "AIR-in" OS.
13+
It's also a play on <!-- spellchecker:off -->"aer"<!-- spellchecker:on --> and the phonetic "air" sound,
14+
indicative of our desire to produce an open, trusted and high-performance operating system.
1215

1316
It's pronounced as "AIR-in" OS.
1417

src/content/docs/Packaging/Recipes/Triggers/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The parenthesis begin a non-greedy capture group named `GROUP_NAME` containing p
2828
/usr/share/icons/(name:*)/index.theme
2929
```
3030

31-
This creates a capture group identifed by `name` matching `*` in `/usr/share/icons/*/index.theme`. As such, the path `/usr/share/icons/hicolor/index.theme`. with `name` being set to `hicolor`.
31+
This creates a capture group identified by `name` matching `*` in `/usr/share/icons/*/index.theme`. As such, the path `/usr/share/icons/hicolor/index.theme`. with `name` being set to `hicolor`.
3232

3333
This is a powerful mechanism that allows us to control handler execution without relying on interim scripts.
3434

src/content/docs/Packaging/Workflow/preparing-for-packaging.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ git pull
2525

2626
## Switch to a new git branch
2727

28-
When conducting any packaging work, it is a good idea to separate out your work in a different branch. This allows you to isolate changes you make from one package in a separate branch to changes you make to a different package in a second branch and so on. This additionally is helpful as it keeps your work separate to any underlaying changes made to the `main` recipes repository, more easily allowing you to rebase your work if needed.
28+
When conducting any packaging work, it is a good idea to separate out your work in a different branch.
29+
This allows you to isolate changes you make from one package in a separate branch to changes you make
30+
to a different package in a second branch and so on.
31+
This additionally is helpful as it keeps your work separate to any underlying changes made to the `main`
32+
recipes repository, more easily allowing you to rebase your work if needed.
2933

3034
```bash
3135
git checkout -b "branch-name"

src/content/docs/Users/Desktops/cosmic.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sudo moss install pkgset-aeryn-cosmic-full
2222
The names are fairly self explanatory:
2323
* Minimal: The minimum number of packages required for a Cosmic Desktop session
2424
* Recommended: The minimal Cosmic Desktop session plus additional recommended applications
25-
* Full: The recommended Cosmic Dekstop session plus additional optional applications
25+
* Full: The recommended Cosmic Desktop session plus additional optional applications
2626

2727
### Controlling the display manager
2828

src/content/docs/Users/Getting Started/creating-the-live-enviroment.mdx renamed to src/content/docs/Users/Getting Started/creating-the-live-environment.mdx

File renamed without changes.

0 commit comments

Comments
 (0)