From cf4541de471a8154835c08b58c62509b3ee6c82e Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Tue, 22 Oct 2019 12:37:49 +0200 Subject: Fix comments in IncompatibleTypesException --- src/pl/edu/mimuw/cloudatlas/model/IncompatibleTypesException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pl/edu/mimuw/cloudatlas/model/IncompatibleTypesException.java b/src/pl/edu/mimuw/cloudatlas/model/IncompatibleTypesException.java index c872e98..65c719e 100644 --- a/src/pl/edu/mimuw/cloudatlas/model/IncompatibleTypesException.java +++ b/src/pl/edu/mimuw/cloudatlas/model/IncompatibleTypesException.java @@ -53,7 +53,7 @@ public class IncompatibleTypesException extends UnsupportedOperationException { } /** - * Gets a type of a left operand in an operation that caused this exception. + * Gets the type of the left operand in the operation that caused this exception. * * @return the type of the left operand */ @@ -62,7 +62,7 @@ public class IncompatibleTypesException extends UnsupportedOperationException { } /** - * Gets a type of a right operand in an operation that caused this exception. + * Gets the type of the right operand in the operation that caused this exception. * * @return the type of the right operand */ @@ -71,9 +71,9 @@ public class IncompatibleTypesException extends UnsupportedOperationException { } /** - * Gets an object representing an operation that caused this exception. + * Gets an object representing the operation that caused this exception. * - * @return an operation that caused this exception + * @return the operation that caused this exception */ public Operation getOperation() { return operation; -- cgit v1.2.3