Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
10aded committed May 2, 2024
1 parent 07ef56a commit b096269
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ A release build can be created with the following command.

`zig build -Doptimize=ReleaseFast`

Building the project requires the complier version to be 0.12.0 at minimum. The project has been tested with the Zig 0.12.0 compiler on Windows 11, available from the [download page](https://ziglang.org/download/) on `ziglang.org`. Compilation of the game on other operating systems has not been tested.
Building the project requires the compiler version to be 0.12.0 at minimum. The project has been tested with the Zig 0.12.0 compiler on Windows 11, available from the [download page](https://ziglang.org/download/) on `ziglang.org`. Compilation of the game on other operating systems has not been tested.

## Dependencies

The project is written in Zig and uses the raylib library, [specifically v5.0](https://github.com/raysan5/raylib/releases/tag/5.0) (commit number ae50bfa). We included the necessary source files from raylib directly in our project (under the `Raylib5` directory), but deleted unnecessary parts of the library (like its numerous examples). We also combined the `build.zig` file there into the build file for the project, simplifying it for Zig compiler 0.12.0.
The project is written in Zig and uses the raylib library, [specifically v5.0](https://github.com/raysan5/raylib/releases/tag/5.0) (commit number `ae50bfa`). We included the necessary source files from raylib directly in our project (under the `Raylib5` directory), but deleted unnecessary parts of the library (like its numerous examples). We also combined the `build.zig` file there into the build file for the project, simplifying it for Zig compiler 0.12.0.

Raylib is created by Ramon Santamaria (GitHub handle [@raysan5](https://github.com/raysan5)) and is available on GitHub [here](https://github.com/raysan5/raylib). See the link above for Raylib's full license / copywrite details.

Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub fn order_compiler(left : @Vector(3, usize), right : @Vector(3, usize)) std.m
}

const compiler_order = order_compiler(compiler_version_min, compiler_version_curr);
const old_compiler_error_msg = "ERROR: Building the project requires the complier version to be "
const old_compiler_error_msg = "ERROR: Building the project requires the compiler version to be "
++ compiler_version_min_str ++ " at minimum. " ++
"The current compiler is: " ++ compiler_version_curr_str ++ ".";

Expand Down
2 changes: 1 addition & 1 deletion main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// run in the top directory of the project.
//
// Building the project requires the complier version to be 0.12.0 at minimum.
// Building the project requires the compiler version to be 0.12.0 at minimum.
//
// The project was originally built with the Zig 0.11.0 compiler, and
// was updated to work with 0.12.0 of the compiler on 2 May 2024.
Expand Down

0 comments on commit b096269

Please sign in to comment.