Skip to content

Commit

Permalink
typos in md files found with aspell
Browse files Browse the repository at this point in the history
  • Loading branch information
greenthepear authored and lerno committed Aug 5, 2024
1 parent 455c78a commit 2c4ecfb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The C3 Website made with [Astro](https://astro.build/), [TailwindCSS](https://ta

<h1 style="font-size: 24px;">Get Started</h1>

After cloning the repository with `git clone`, you can run `npm run dev` and thats it!
After cloning the repository with `git clone`, you can run `npm run dev` and that's it!

<h1 style="display: flex; align-items: center; font-size: 24px;">Project Structure</h1>

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guide/basic-types-and-values.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ bool f = false;

### Character literals

A character literal is a value enclosed in `'``'`. Its value is intepreted as being its
A character literal is a value enclosed in `'``'`. Its value is interpreted as being its
ASCII value for a single character.

It is also possible to use 2, 4 or 8 character wide character literals. Such are interpreted
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guide/my-first-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can follow [this link](/references/getting-started/prebuilt-binaries/) to in
:::
## Creating a new project

The `c3c init` comamnd will create a new directory containing your project structure.
The `c3c init` command will create a new directory containing your project structure.

```bash
$ c3c init <project-name>
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/references/docs/arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The final type is the slice `<type>[]` e.g. `int[]`. A slice is a view into eit

### Slicing arrays

It's possible to use a range syntax to create slices from pointers, arrays and other slicess. They either use range syntax:
It's possible to use a range syntax to create slices from pointers, arrays and other slices. They either use range syntax:
`arr[<start index>..<end index>]` (the end index is included in the final result) or start + len syntax: `arr[<start index> : len]`


Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/references/docs/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ Bitstruct backing types may be integers or char arrays. The difference in layout
for (int i = 0; i < 4; i++) io::printf("%X", c[i]); // Prints ABCD789A
io::printn();

Bitstructs can be made to have ovelapping bit fields. This is useful when modelling
Bitstructs can be made to have overlapping bit fields. This is useful when modelling
a layout which has multiple different layouts depending on flag bits:

bitstruct Foo : char @overlap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ afterwards you can double click the python file and pick "python" from the list.

:::

### optional: set c3c as a global enviornment variable
### optional: set c3c as a global environment variable

5. copy the folder
6. navigate to `C:\Program Files`
Expand Down

0 comments on commit 2c4ecfb

Please sign in to comment.