Renamed the about library

This commit is contained in:
2023-07-31 11:19:03 +10:00
committed by GitHub
parent 540dcd03cc
commit 40357d52a3
2 changed files with 6 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
# About Library # Toy Version Info Library
The about library simply provides version info about the current build of Toy. The toy_version_info library simply provides version info about the current build of Toy.
The about library can usually be accessed with the `import` keyword: The toy_version_info library can usually be accessed with the `import` keyword:
``` ```
import about; import toy_version_info;
import about as about; //can be aliased import toy_version_info as toy_version_info; //can be aliased
``` ```
## Defined Variables ## Defined Variables

View File

@@ -45,7 +45,7 @@ print tally(); //3
* [Quick Start Guide](getting-started/quick-start-guide) * [Quick Start Guide](getting-started/quick-start-guide)
* [Types](getting-started/types) * [Types](getting-started/types)
* [About Library](getting-started/about-library) * [Toy Version Info Library](getting-started/toy-version-info-library)
* [Standard Library](getting-started/standard-library) * [Standard Library](getting-started/standard-library)
* [Random Library](getting-started/random-library) * [Random Library](getting-started/random-library)
* [Runner Library](getting-started/runner-library) * [Runner Library](getting-started/runner-library)