From 069b9221f3add0540f34fa8ea5c2ea79d5959607 Mon Sep 17 00:00:00 2001 From: Sonicof <116839500+Sonicof@users.noreply.github.com> Date: Thu, 1 May 2025 04:30:56 +0530 Subject: [PATCH] Update data-types.md The link to the page Custom Data Type in line 26 and the link to page Enums in line 57 was not working. Updated it from custom-data-type to custom-data-type.md and same for Enum --- docs/resources/data-representation/data-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/data-representation/data-types.md b/docs/resources/data-representation/data-types.md index e9a87d8c..331efa94 100644 --- a/docs/resources/data-representation/data-types.md +++ b/docs/resources/data-representation/data-types.md @@ -23,7 +23,7 @@ Composite data types are made up of primitive data types. They can hold multiple You can also create your own custom data types. This can be especially useful when you need a specific structure for your data that doesn't fit into the predefined types. For example, you might create a custom data type for a user profile, which includes several pieces of data like a name, an email address, and a profile picture. :::info -Learn more about creating and using [**Custom Data Types**](custom-data-types). +Learn more about creating and using [**Custom Data Types**](custom-data-types.md). ::: ## Built-in Data Types @@ -54,6 +54,6 @@ Enums, or enumerated types, are a special kind of data type that consists of a s :::info -Learn more about creating and using enums [**here**](enums). +Learn more about creating and using enums [**here**](enums.md). :::