Skip to content

Commit

Permalink
feat(irs-policy-store):[TRI-1593] Fix typos in Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-jhartmann authored Sep 18, 2023
1 parent ad75f4a commit c96e040
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import lombok.NoArgsConstructor;

/**
* A Constraint object use as a element of collection in Permission
* A Constraint object used as an element of collection in Permission
*/
@Getter
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import lombok.NoArgsConstructor;

/**
* A Constraints contain two collection of Constraint
* A Constraint containing two collections of Constraints
*/
@Getter
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
public record CreatePolicyRequest(@Schema(description = "The ID of the policy to add") @NotNull String policyId,

@Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations") @NotNull OffsetDateTime validUntil,
@Schema(description = "List of permissions that will be add to Policy on creation.") @NotNull List<Permission> permissions
@Schema(description = "List of permissions that will be added to the Policy on creation.") @NotNull List<Permission> permissions
) {

}

0 comments on commit c96e040

Please sign in to comment.