From b39e11207cbc9ede976065395c9f2bb7b89031b9 Mon Sep 17 00:00:00 2001 From: Roberto Cortez Date: Tue, 10 Sep 2024 19:44:11 +0100 Subject: [PATCH] Fix equals and hashcode mapping documentation --- documentation/src/main/docs/config/mappings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/src/main/docs/config/mappings.md b/documentation/src/main/docs/config/mappings.md index 72fc127c6..1eb63c20d 100644 --- a/documentation/src/main/docs/config/mappings.md +++ b/documentation/src/main/docs/config/mappings.md @@ -551,8 +551,8 @@ Map any = server.aliases.get("prod"); ## toString, equals, hashcode -If the config mapping contains method declarations for `toString`, `equals` or `hashcode`, the config mapping instance -will include a proper implementation of these methods. +If the config mapping contains a `toString` method declaration, the config mapping instance will include a proper +implementation of the `toString` method. The `equals` and `hashcode` methods are included automatically. !!! caution