Skip to content

Commit

Permalink
Fix broken links in migration guide
Browse files Browse the repository at this point in the history
Updated incorrect anchor links in the v2-to-v3 migration guide to ensure they correctly point to the relevant sections. This ensures users can navigate the documentation without encountering broken links.

Signed-off-by: Frank Brückner <[email protected]>
  • Loading branch information
froschdesign committed Nov 20, 2024
1 parent f54976a commit 0820b7b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/book/v3/migration/v2-to-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following methods have been removed:
- `setSeparator`
- `getSeparator`

The constructor now only accepts an associative array of [documented options](../word.md#camelCaseToDash).
The constructor now only accepts an associative array of [documented options](../word.md#camelcasetodash).

The filter will now treat numbers as a word boundary.
For example `ThisHas4Words` will filter to `This-Has-4-Words`
Expand All @@ -73,7 +73,7 @@ The following methods have been removed:
- `setSeparator`
- `getSeparator`

The constructor now only accepts an associative array of [documented options](../word.md#camelCaseToSeparator).
The constructor now only accepts an associative array of [documented options](../word.md#camelcasetoseparator).

The filter will now treat numbers as a word boundary.
For example `ThisHas4Words` with the default separator will filter to `This Has 4 Words`
Expand All @@ -88,7 +88,7 @@ The following methods have been removed:
- `setSeparator`
- `getSeparator`

The constructor now only accepts an associative array of [documented options](../word.md#camelCaseToUnderscore).
The constructor now only accepts an associative array of [documented options](../word.md#camelcasetounderscore).

The filter will now treat numbers as a word boundary.
For example `ThisHas4Words` will filter to `This_Has_4_Words`
Expand All @@ -103,7 +103,7 @@ The following methods have been removed:
- `setSeparator`
- `getSeparator`

The constructor now only accepts an associative array of [documented options](../word.md#dashToSeparator).
The constructor now only accepts an associative array of [documented options](../word.md#dashtoseparator).

#### `DenyList`

Expand Down Expand Up @@ -138,7 +138,7 @@ The following methods have been removed:
- `setExists`
- `getExists`

The constructor now only accepts an associative array of [documented options](../standard-filters.md#realPath).
The constructor now only accepts an associative array of [documented options](../standard-filters.md#realpath).

`false` is no longer returned when the path must exist and does not.
Instead, the original value is returned.
Expand All @@ -150,11 +150,11 @@ Which in some cases may now need a custom filter to handle Windows specific issu

#### `SeparatorToCamelCase`

The constructor now only accepts an associative array of [documented options](../word.md#separatorToCamelCase).
The constructor now only accepts an associative array of [documented options](../word.md#separatortocamelcase).

#### `SeparatorToDash`

The constructor now only accepts an associative array of [documented options](../word.md#separatorToDash).
The constructor now only accepts an associative array of [documented options](../word.md#separatortodash).

#### `SeparatorToSeparator`

Expand All @@ -165,7 +165,7 @@ The following methods have been removed:
- `setReplacementSeparator`
- `getReplacementSeparator`

The constructor now only accepts an associative array of [documented options](../word.md#separatorToSeparator).
The constructor now only accepts an associative array of [documented options](../word.md#separatortoseparator).

#### `StringPrefix`

Expand Down Expand Up @@ -215,7 +215,7 @@ The constructor now only accepts an associative array of [documented options](..

#### `UnderscoreToSeparator`

The constructor now only accepts an associative array of [documented options](../standard-filters.md#underscoreToSeparator).
The constructor now only accepts an associative array of [documented options](../word.md#underscoretoseparator).

## Removed Filters

Expand Down

0 comments on commit 0820b7b

Please sign in to comment.