From d4e623b24c3c3d53c9e278e0f52e80fac6051885 Mon Sep 17 00:00:00 2001 From: Pieter van den Hombergh Date: Tue, 20 Feb 2024 12:46:00 +0100 Subject: [PATCH] Update arrangeactassert.adoc shorter text --- topics/arrangeactassert.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/arrangeactassert.adoc b/topics/arrangeactassert.adoc index 02e5d9a..cbf9434 100644 --- a/topics/arrangeactassert.adoc +++ b/topics/arrangeactassert.adoc @@ -65,8 +65,8 @@ to generate a non-existing generic class, create two instance with different typ .complete a generic [source,java] ---- -Box sb= new Box(); // compiler will complain for non existing Box class. -Box ib= new Box(); // compiler will complain for non existing Box class. +Box sb= new Box(); // compiler complains about nonexisting Box class. +Box ib= new Box(); // compiler complains about nonexisting Box class. // now you can let the IDE to follow its urge to do the typing for you. ----