diff --git a/sources/platform/actors/development/actor_definition/input_schema/specification.md b/sources/platform/actors/development/actor_definition/input_schema/specification.md
index 9a8412985e..64fdd51569 100644
--- a/sources/platform/actors/development/actor_definition/input_schema/specification.md
+++ b/sources/platform/actors/development/actor_definition/input_schema/specification.md
@@ -183,16 +183,16 @@ Rendered input:
Properties:
-| Property | Value | Required | Description |
-|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| `editor` | One of
- `textfield`
- `textarea`
- `javascript`
- `python`
- `select`
- `datepicker`
- `dataset`
- `keyValueStore`
- `requestQueue`
- `hidden`
| Yes | Visual editor used for
the input field. |
-| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. |
-| `minLength` | Integer | No | Minimum length of the string. |
-| `maxLength` | Integer | No | Maximum length of the string. |
-| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. |
-| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
-| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. |
-| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. |
+| Property | Value | Required | Description |
+|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
+| `editor` | One of - `textfield`
- `textarea`
- `javascript`
- `python`
- `select`
- `datepicker`
- `hidden`
| Yes | Visual editor used for
the input field. |
+| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. |
+| `minLength` | Integer | No | Minimum length of the string. |
+| `maxLength` | Integer | No | Maximum length of the string. |
+| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. |
+| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
+| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. |
+| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. |
:::note Regex escape
diff --git a/sources/platform/storage/dataset.md b/sources/platform/storage/dataset.md
index a54b377eec..f871a87a67 100644
--- a/sources/platform/storage/dataset.md
+++ b/sources/platform/storage/dataset.md
@@ -284,7 +284,7 @@ For more information, visit our [Python SDK documentation](/sdk/python/docs/conc
Fields in a dataset that begin with a `#` are treated as hidden. You can exclude these fields when downloading data by using either `skipHidden=1` or `clean=1` in your query parameters. This feature is useful for excluding debug information from the final dataset output.
-The following example demonstrates a dataset record with hiddent fields, including HTTP response and error details.
+The following example demonstrates a dataset record with hidden fields, including HTTP response and error details.
```json
{