Skip to content

Commit 4adddcf

Browse files
author
Alexandre Dutra
committed
Fix broken links in documentation.
1 parent 0550d74 commit 4adddcf

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

features/custom_codecs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ serializing and deserializing. It's possible to bypass this step with a
303303
lower-level implementation that manipulates the binary stream directly.
304304
That's also how the object mapper handles UDTs, and you can rely on the
305305
mapper to generate UDT codecs for you; see
306-
[this page](object_mapper/custom_codecs/#implicit-udt-codecs) for more
306+
[this page](../object_mapper/custom_codecs/#implicit-udt-codecs) for more
307307
information.
308308

309309
### Limitations
@@ -377,7 +377,7 @@ A codec lookup operation may be costly; to mitigate this, the `CodecRegistry` ca
377377

378378
The following situations are exceptions where it is not possible to cache lookup results:
379379

380-
* With [SimpleStatement] and [BuiltStatement] (Query Builder) instances; in these places, the driver has
380+
* With [SimpleStatement] instances and [BuiltStatement] instances (created via the Query Builder); in these places, the driver has
381381
no way to determine the right CQL type to use, so it performs a best-effort heuristic to guess which codec to use.
382382
* When using "ambiguous" methods of `BoundStatement` and `Row`, such as [setList()][setList],
383383
[setSet()][setSet], [setMap()][setMap], [setObject()][setObject];

upgrade_guide/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is **not binary compatible** with the driver's 2.1 branch.
1111
The main changes were introduced by the custom codecs feature (see below).
1212
We've also seized the opportunity to remove code that was deprecated in 2.1.
1313

14-
1. [Custom codecs](../features/custom_codecs/README.md)
14+
1. [Custom codecs](../features/custom_codecs/)
1515
([JAVA-721](https://datastax-oss.atlassian.net/browse/JAVA-721))
1616
introduce several breaking changes and also modify a few runtime behaviors.
1717

@@ -249,7 +249,7 @@ Merged from 2.0.11:
249249

250250
### 2.1.6
251251

252-
See [2.0.10](20x-to-2010).
252+
See [2.0.10](#2-0-x-to-2-0-10).
253253

254254

255255
### 2.1.2
@@ -368,7 +368,7 @@ driver, but rather third-party frameworks and tools.
368368
If you know that the CQL functions or expressions are safe, use
369369
`setIdempotent(true)` on the statement.
370370

371-
### 2.0.x to 2.0.10
371+
### <a name="2-0-x-to-2-0-10"></a>2.0.x to 2.0.10
372372

373373
We try to avoid breaking changes within a branch (2.0.x to 2.0.y), but
374374
2.0.10 saw a lot of new features and internal improvements. There is one

0 commit comments

Comments
 (0)