Renamed drive system

This commit is contained in:
2023-07-26 01:06:08 +10:00
parent f4bfb73f47
commit e58aa10d42
4 changed files with 2 additions and 3 deletions

View File

@@ -13,7 +13,6 @@ The most important macro is `TOY_API`, which specifies functions intended for th
* [toy_common.h](toy_common_h.md)
* [toy_console_colors.h](toy_console_colors_h.md)
* [toy_memory.h](toy_memory_h.md)
* [toy_drive_system.h](toy_drive_system_h.md)
## Core Pipeline

View File

@@ -29,7 +29,7 @@ This function declares a new variable `key` within `scope`, giving it the type o
This function returns true on success, otherwise it returns failure (such as if the given key already exists).
### bool Toy_isDelcaredScopeVariable(Toy_Scope* scope, Toy_Literal key)
### bool Toy_isDeclaredScopeVariable(Toy_Scope* scope, Toy_Literal key)
This function checks to see if a given variable with the name `key` has been previously declared.