diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index aa20b7da..c65b9d72 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -567,7 +567,7 @@ export type ColumnBreakpoint = ColumnSize | ColumnSizeDescriptor;
| noGutter | let
| No | boolean
| false
| Set to `true` to remove the gutter |
| noGutterLeft | let
| No | boolean
| false
| Set to `true` to remove the left gutter |
| noGutterRight | let
| No | boolean
| false
| Set to `true` to remove the right gutter |
-| padding | let
| No | boolean
| false
| Set to `true` to add top and bottom padding this column |
+| padding | let
| No | boolean
| false
| Set to `true` to add top and bottom padding to the column |
| aspectRatio | let
| No | "2x1" | "16x9" | "9x16" | "1x2" | "4x3" | "3x4" | "1x1"
| -- | Specify the aspect ratio of the column |
| sm | let
| No | ColumnBreakpoint
| -- | Set the small breakpoint |
| md | let
| No | ColumnBreakpoint
| -- | Set the medium breakpoint |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index a40dec15..59c3d84b 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -4817,7 +4817,7 @@
{
"name": "padding",
"kind": "let",
- "description": "Set to `true` to add top and bottom padding this column",
+ "description": "Set to `true` to add top and bottom padding to the column",
"type": "boolean",
"value": "false",
"isFunction": false,
diff --git a/src/Grid/Column.svelte b/src/Grid/Column.svelte
index c07fc621..aa1e0c21 100644
--- a/src/Grid/Column.svelte
+++ b/src/Grid/Column.svelte
@@ -26,7 +26,7 @@
/** Set to `true` to remove the right gutter */
export let noGutterRight = false;
- /** Set to `true` to add top and bottom padding this column */
+ /** Set to `true` to add top and bottom padding to the column */
export let padding = false;
/**
diff --git a/types/Grid/Column.d.ts b/types/Grid/Column.d.ts
index 76cdb34a..7f150dbc 100644
--- a/types/Grid/Column.d.ts
+++ b/types/Grid/Column.d.ts
@@ -36,7 +36,7 @@ export interface ColumnProps extends svelte.JSX.HTMLAttributes