Skip to content

Update data-types.md #332

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/resources/data-representation/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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).

:::