diff --git a/README.md b/README.md index 1e1d599..c419102 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -This git branch is the documentation website for The Toy Programming Language version 2.x, which can be found at [https://github.com/Ratstail91/Toy](https://github.com/Ratstail91/Toy). +This git branch is the documentation website for The Toy Programming Language version 2.x, which can be found at [https://github.com/krgamestudios/Toy](https://github.com/krgamestudios/Toy). Toy v2.x is still under active development, so this documentation will change and evolve over time, and may not reflect the current reference implementation. diff --git a/_getting_started/quick-start-guide.md b/_getting_started/quick-start-guide.md index 01fa424..b1bc669 100644 --- a/_getting_started/quick-start-guide.md +++ b/_getting_started/quick-start-guide.md @@ -53,7 +53,7 @@ The types available in Toy are: | `bool` | boolean | Either `true` or `false`. | | `int` | integer | Any whole number (32-bits). | | `float` | float | A decimal number (32-bits), using floating-point arithmetic. | -| `string` | string | A piece of text, supports UTF-8, [in theory](https://github.com/Ratstail91/Toy/issues/174). | +| `string` | string | A piece of text, supports UTF-8, [in theory](https://github.com/krgamestudios/Toy/issues/174). | | `array` | array | A series of values stored sequentially in memory. | | `table` | table | A series key-value pairs stored in such a way that allows for fast lookups. Booleans, functions, opaques and `null` can't be used as keys. | | `function` | function | A chunk of reusable code that takes zero or more parameters, and returFunctions are declared with the `fn` keyword. | diff --git a/_includes/elements/attribution.html b/_includes/elements/attribution.html index 7535a95..348f9b0 100644 --- a/_includes/elements/attribution.html +++ b/_includes/elements/attribution.html @@ -2,7 +2,7 @@ - The Toy Programming Language - Available On GitHub + The Toy Programming Language - Available On GitHub diff --git a/index.md b/index.md index 2c4ce7c..2d60276 100644 --- a/index.md +++ b/index.md @@ -10,7 +10,7 @@ title: The Toy Programming Language
- +
The Toy Programming Language is an imperative, bytecode-interpreted, embeddable scripting language. Rather than functioning independently, it serves as part of another program, the "host". This design allows for straightforward customization by both the host's developers and end users, achieved by exposing program logic through text files.