From d0cf7e63bb00bc921b754d7498e14b078833c098 Mon Sep 17 00:00:00 2001 From: Shiba <53093609+sudoShiba@users.noreply.github.com> Date: Fri, 2 May 2025 14:39:03 +0200 Subject: [PATCH] fixed small typo --- single_object_doc_instr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single_object_doc_instr.md b/single_object_doc_instr.md index 33ab4be..015d4bf 100644 --- a/single_object_doc_instr.md +++ b/single_object_doc_instr.md @@ -158,7 +158,7 @@ For example, see the following documentation for an immutable `TimeOfDay` class: * @invar This object's hours are between 0 and 23 * | 0 <= getHours() && getHours() <= 23 * @invar This object's minutes are between 0 and 59 - * | 0 <= getMinutes() && getMinutes <= 59 + * | 0 <= getMinutes() && getMinutes() <= 59 */ public class TimeOfDay {