Skip to content

Commit

Permalink
Fix grammar error: Replace "different to" with "different from".
Browse files Browse the repository at this point in the history
Co-Authored-By: Rolfe Dlugy-Hegwer <[email protected]>
  • Loading branch information
rolfedh committed Nov 7, 2023
1 parent 0741b56 commit 182e5a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,12 @@ public class OidcCommonConfig {
public Optional<Duration> connectionDelay = Optional.empty();

/**
* The number of times an attempt to re-establish an already available connection will be repeated for.
* Note this property is different to the `connection-delay` property which is only effective during the initial OIDC
* The number of times an attempt to re-establish an already available connection will be repeated.
* Note this property is different from the `connection-delay` property, which is only effective during the initial OIDC
* connection creation.
* This property is used to try to recover the existing connection which may have been temporarily lost.
* For example, if a request to the OIDC token endpoint fails due to a connection exception then the request will be retried
* for
* a number of times configured by this property.
* This property is used to try to recover an existing connection that may have been temporarily lost.
* For example, if a request to the OIDC token endpoint fails due to a connection exception, then the request will be retried
* the number of times configured by this property.
*/
@ConfigItem(defaultValue = "3")
public int connectionRetryCount = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class QuarkusBootstrap implements Serializable {
private final PathCollection applicationRoot;

/**
* The root of the project. This may be different to the application root for tests that
* The root of the project. This may be different from the application root for tests that
* run in a different directory.
*/
private final Path projectRoot;
Expand Down

0 comments on commit 182e5a5

Please sign in to comment.