From 1f73b012db6dbf6917313c55ce6e30492fd91b80 Mon Sep 17 00:00:00 2001 From: Adrian Date: Tue, 24 Sep 2024 21:32:34 +0300 Subject: [PATCH] Update Primitives.md Updated broken link --- doc/tutorial/Primitives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/Primitives.md b/doc/tutorial/Primitives.md index 0f2f3fb6e..e8ee24695 100644 --- a/doc/tutorial/Primitives.md +++ b/doc/tutorial/Primitives.md @@ -114,7 +114,7 @@ var f = '\xFF'; // == 255 Virgil automatically promotes smaller-width integer values to larger-width integer values when necessary. Such a promotion does not change the _value_ of an integer, just its representation. -For more information on how numbers relate to their representations, see (here)[Numbers.md]. +For more information on how numbers relate to their representations, see [here](Numbers.md). The most common example is extending `byte` values to `int` values where necessary, zero-extending them.