From 95ff5e092f1650233017be6e3a8ded78f4e59773 Mon Sep 17 00:00:00 2001 From: Douglas <32344964+NotTheDr01ds@users.noreply.github.com> Date: Mon, 9 Sep 2024 09:17:05 -0400 Subject: [PATCH] Add `wrap` as a cast for table and record (#1545) --- lang-guide/chapters/types/basic_types/record.md | 2 +- lang-guide/chapters/types/basic_types/table.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang-guide/chapters/types/basic_types/record.md b/lang-guide/chapters/types/basic_types/record.md index a61174619d..365dff2c0e 100644 --- a/lang-guide/chapters/types/basic_types/record.md +++ b/lang-guide/chapters/types/basic_types/record.md @@ -5,7 +5,7 @@ | **_Description:_** | The foundational associative map. Holds key-value pairs, which associate string keys with various data values. | | **_Annotation:_** | `record` | | **_Literal syntax:_** | See below | -| **_Casts:_** | [`into record`](/commands/docs/into_record.md) | +| **_Casts:_** | [`into record`](/commands/docs/into_record.md), [`wrap`](/commands/docs/wrap.md) | | **_See Also:_** | [Working with Records](/book/working_with_records.md) | | | [Navigating and Accessing Structured Data](/book/navigating_structured_data.md) | | | [Types of Data - Records](/book/types_of_data.md#records) | diff --git a/lang-guide/chapters/types/basic_types/table.md b/lang-guide/chapters/types/basic_types/table.md index 92e047e70c..fcd7c23b08 100644 --- a/lang-guide/chapters/types/basic_types/table.md +++ b/lang-guide/chapters/types/basic_types/table.md @@ -5,7 +5,7 @@ | **_Description:_** | A two-dimensional container with both columns and rows where each cell can hold any basic or structured data type | | **_Annotation:_** | `table` | | **_Table-Literal Syntax:_** | See below | -| **_Casts:_** | N/A | +| **_Casts:_** | [`wrap`](/commands/docs/wrap.md) | | **_See Also:_** | [Working with Tables](/book/working_with_tables.md) | | | [Navigating and Accessing Structured Data](/book/navigating_structured_data.md) | | | [Types of Data - Tables](/book/types_of_data.md#tables) |