From 3b077025d3a4af8d2d7b42648c49c1629865b15f Mon Sep 17 00:00:00 2001 From: Fr Jeremy Krieg Date: Thu, 15 Jun 2023 16:15:17 +0930 Subject: [PATCH] Fix formatting in assertj-core-assertions-guide.adoc (#143) --- src/docs/asciidoc/user-guide/assertj-core-assertions-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/user-guide/assertj-core-assertions-guide.adoc b/src/docs/asciidoc/user-guide/assertj-core-assertions-guide.adoc index 59ec057..11e10dd 100644 --- a/src/docs/asciidoc/user-guide/assertj-core-assertions-guide.adoc +++ b/src/docs/asciidoc/user-guide/assertj-core-assertions-guide.adoc @@ -2564,7 +2564,7 @@ public interface GoTSoftAssertionsProvider extends SoftAssertionsProvider { ---- [.underline]#Step 2# + -In order to get a concrete entry point exposing all custom entry points, create a class implementing all custom `SoftAssertionsProvider`s and extending `AbstractSoftAssertions`. +In order to get a concrete entry point exposing all custom entry points, create a class implementing all custom `SoftAssertionsProvider` subinterfaces and extending `AbstractSoftAssertions`. `AbstractSoftAssertions` provides the core internal implementation to collect all errors from the different implemented entry points (it also implements `SoftAssertionsProvider`). To get standard soft assertions, inherit from `SoftAssertions` instead of `AbstractSoftAssertions` (or `BddSoftAssertions` to get the BDD flavor).