Skip to content

Commit 1f8bd72

Browse files
committed
API Docs: replace ampersand with &
1 parent 7a7026b commit 1f8bd72

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/main/java/com/uwetrottmann/trakt5/enums/ExtendedMoviesWatched.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public class ExtendedMoviesWatched implements TraktEnum {
2525
* Return movie details, like overview and rating.
2626
*
2727
* @deprecated Starting 2026-05-30, this will be the default. See the
28-
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination &
29-
* Extended Defaults</a> discussion for details and updates.
28+
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination
29+
* &amp; Extended Defaults</a> discussion for details and updates.
3030
*/
3131
@Deprecated
3232
public static final ExtendedMoviesWatched FULL = new ExtendedMoviesWatched("full");

src/main/java/com/uwetrottmann/trakt5/enums/ExtendedShowsWatched.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
import java.util.stream.Collectors;
2121

2222
/**
23-
* Extended info options for the watched shows endpoint. Use {@link #of(ExtendedShowsWatched...)}
24-
* to combine multiple values into a comma-separated parameter.
23+
* Extended info options for the watched shows endpoint. Use {@link #of(ExtendedShowsWatched...)} to combine multiple
24+
* values into a comma-separated parameter.
2525
*/
2626
public class ExtendedShowsWatched implements TraktEnum {
2727

2828
/**
2929
* Return show details, like overview and rating.
3030
*
3131
* @deprecated Starting 2026-05-30, this will be the default. See the
32-
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination &
33-
* Extended Defaults</a> discussion for details and updates.
32+
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination
33+
* &amp; Extended Defaults</a> discussion for details and updates.
3434
*/
3535
@Deprecated
3636
public static final ExtendedShowsWatched FULL = new ExtendedShowsWatched("full");
@@ -39,8 +39,8 @@ public class ExtendedShowsWatched implements TraktEnum {
3939
* Exclude watched info for seasons and episodes.
4040
*
4141
* @deprecated Starting 2026-05-30, this will be the default. See the
42-
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination &
43-
* Extended Defaults</a> discussion for details and updates.
42+
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination
43+
* &amp; Extended Defaults</a> discussion for details and updates.
4444
*/
4545
@Deprecated
4646
public static final ExtendedShowsWatched NOSEASONS = new ExtendedShowsWatched("noseasons");
@@ -49,8 +49,8 @@ public class ExtendedShowsWatched implements TraktEnum {
4949
* Include season progress information.
5050
* <p>
5151
* Note: until 2026-05-30 this is the default and won't have any effect. See the
52-
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination &
53-
* Extended Defaults</a> discussion for details and updates.
52+
* <a href="https://github.com/trakt/trakt-api/discussions/775">Upcoming API Changes: Watched Endpoints Pagination
53+
* &amp; Extended Defaults</a> discussion for details and updates.
5454
*/
5555
public static final ExtendedShowsWatched PROGRESS = new ExtendedShowsWatched("progress");
5656

src/test/java/com/uwetrottmann/trakt5/BaseTestCase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ public class BaseTestCase {
7474
protected static final Integer DEFAULT_PAGE_SIZE = 10;
7575
/**
7676
* 250 is the maximum limit as of June 15, 2026 according to the
77-
* <a href="https://github.com/trakt/trakt-api/discussions/681">Upcoming API Changes: Pagination & Sorting Updates
78-
* discussion</a>.
77+
* <a href="https://github.com/trakt/trakt-api/discussions/681">Upcoming API Changes: Pagination &amp; Sorting
78+
* Updates discussion</a>.
7979
* <p>
8080
* Previously, it was 1000.
8181
*/

0 commit comments

Comments
 (0)