Skip to content

Commit 8c38f39

Browse files
committed
fix more links
1 parent 3a3bbe0 commit 8c38f39

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/release-notes/breaking-changes.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ Breaking changes can impact your Elastic applications, potentially disrupting no
2626
- [1. Container types](#1-container-types)
2727
- [2. Removal of certain generic request descriptors](#2-removal-of-certain-generic-request-descriptors)
2828
- [3. Removal of certain descriptor constructors and related request APIs](#3-removal-of-certain-descriptor-constructors-and-related-request-apis)
29-
- [4. Date / Time / Duration values](#4-date--time--duration-values)
29+
- [4. Date / Time / Duration values](#4-date-time-duration-values)
3030
- [5. `ExtendedBounds`](#5-extendedbounds)
3131
- [6. `Field.Format`](#6-fieldformat)
3232
- [7. `Field`/`Fields` semantics](#7-fieldfields-semantics)
3333
- [8. `FieldValue`](#8-fieldvalue)
3434
- [9. `FieldSort`](#9-fieldsort)
35-
- [10. Descriptor types `class` -\> `struct`](#10-descriptor-types-class---struct)
35+
- [10. Descriptor types `class` -\> `struct`](#10-descriptor-types-class-struct)
3636

3737
### Breaking changes
3838

@@ -159,7 +159,7 @@ new IndexRequestDescriptor(document, "my_index", Id.From(document));
159159
await client.IndexAsync(document, "my_index", Id.From(document), ...);
160160
```
161161

162-
#### 4. Date / Time / Duration values [4-date--time--duration-values]
162+
#### 4. Date / Time / Duration values [4-date-time-duration-values]
163163

164164
**Impact**: High.
165165

@@ -187,7 +187,7 @@ This property has not been used for some time (replaced by the `FieldAndFormat`
187187

188188
`Field`/`Fields` static factory methods and conversion operators no longer return nullable references but throw exceptions instead (`Field`) if the input `string`/`Expression`/`PropertyInfo` argument is `null`.
189189

190-
This makes implicit conversions to `Field` more user-friendly without requiring the null-forgiveness operator (`!`) ([read more](index.md#field-name-inference)).
190+
This makes implicit conversions to `Field` more user-friendly without requiring the null-forgiveness operator (`!`) ([read more](./index.md/5-field-name-inference)).
191191

192192
#### 8. `FieldValue` [8-fieldvalue]
193193

@@ -203,9 +203,9 @@ These values have not been used for some time.
203203

204204
Removed static `FieldSort.Empty` member.
205205

206-
Sorting got reworked which makes this member obsolete ([read more](index.md#sorting)).
206+
Sorting got reworked which makes this member obsolete ([read more](index.md#8-sorting)).
207207

208-
#### 10. Descriptor types `class` -> `struct` [10-descriptor-types-class---struct]
208+
#### 10. Descriptor types `class` -> `struct` [10-descriptor-types-class-struct]
209209

210210
**Impact**: Low.
211211

docs/release-notes/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To check for security updates, go to [Security announcements for the Elastic sta
3434
- [2.4. Union Types](#24-union-types)
3535
- [3. Improved Descriptor Design](#3-improved-descriptor-design)
3636
- [3.1. Wrap](#31-wrap)
37-
- [3.2. Unwrap / Inspect](#32-unwrap--inspect)
37+
- [3.2. Unwrap / Inspect](#32-unwrap-inspect)
3838
- [3.3. Removal of Side Effects](#33-removal-of-side-effects)
3939
- [4. Request Path Parameter Properties](#4-request-path-parameter-properties)
4040
- [5. Field Name Inference](#5-field-name-inference)
@@ -203,7 +203,7 @@ Descriptors are now implemented as `struct` instead of `class`, reducing allocat
203203

204204
:::
205205

206-
##### 3.2. Unwrap / Inspect [32-unwrap--inspect]
206+
##### 3.2. Unwrap / Inspect [32-unwrap-inspect]
207207

208208
Descriptor values can now be inspected by unwrapping the object using an implicit conversion operator:
209209

0 commit comments

Comments
 (0)