From 33fa74ff42d480e58d58cfa59a5c24f022d42d2a Mon Sep 17 00:00:00 2001 From: zohairawan <35776095+zohairawan@users.noreply.github.com> Date: Thu, 21 Aug 2025 01:24:47 -0700 Subject: [PATCH 1/4] Fix grammar --- src/exceptions_ii/unchecked_exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exceptions_ii/unchecked_exceptions.md b/src/exceptions_ii/unchecked_exceptions.md index d2c64224..065cb886 100644 --- a/src/exceptions_ii/unchecked_exceptions.md +++ b/src/exceptions_ii/unchecked_exceptions.md @@ -1,6 +1,6 @@ # Unchecked Exceptions -When a part of your code might throw a "unchecked" exception, other +When a part of your code might throw an "unchecked" exception, other parts of your code do not need to account for that possibility. ```java From b0c438c83399f1f126f1fda7e231b38dbc8e35bc Mon Sep 17 00:00:00 2001 From: zohairawan <35776095+zohairawan@users.noreply.github.com> Date: Thu, 21 Aug 2025 22:18:03 -0700 Subject: [PATCH 2/4] Fix typo --- src/interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces.md b/src/interfaces.md index 456e2230..624a03dd 100644 --- a/src/interfaces.md +++ b/src/interfaces.md @@ -2,7 +2,7 @@ Generics let you write code that doesn't care what is different between different things - you would accept a `String` -or an `Integer`, doesn't matter what is diferent between them. +or an `Integer`, doesn't matter what is different between them. Interfaces do a related thing. They let you write code that takes advantage of commonalities. From 1f5f63ea76b2395df3cb15db00c110ea8b0074f0 Mon Sep 17 00:00:00 2001 From: zohairawan <35776095+zohairawan@users.noreply.github.com> Date: Thu, 21 Aug 2025 23:03:07 -0700 Subject: [PATCH 3/4] Fix Typo --- src/SUMMARY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index a2b6fb85..78679ed9 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -481,7 +481,7 @@ battleship - [Subpackages](./packages/subpackages.md) - [Reverse Domain Name Notation](./packages/reverse_domain_name_notation.md) -# Data Types IV +# Data Types V - [Records](./records.md) - [Declaration](./records/declaration.md) From a534710699ea5dd49b48ab62e6df0d10e10ba00f Mon Sep 17 00:00:00 2001 From: zohairawan <35776095+zohairawan@users.noreply.github.com> Date: Thu, 21 Aug 2025 23:10:56 -0700 Subject: [PATCH 4/4] Fix Typos --- src/SUMMARY.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 78679ed9..6852bac6 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -549,7 +549,7 @@ battleship - [Subtypes](./interfaces/subtypes.md) - [Multiple Implementations](./interfaces/multiple_implementations.md) -# Data Types V +# Data Types VI @@ -621,7 +621,7 @@ Make them do one. --> - [Concurrent Modifications](./loops_iii/concurrent_modifications.md) - [Inferred Types](./loops_iii/inferred_types.md) -# Concepts II +# Concepts III - [Encapsulation](./encapsulation.md) - [Implementation Details](./encapsulation/implementation_details.md) @@ -634,7 +634,7 @@ Make them do one. --> - [Information Hiding](./encapsulation/information_hiding.md) -# Data Types VI +# Data Types VII - [Collections](./collections.md) - [List](./collections/list.md) @@ -714,7 +714,7 @@ Make them do one. --> - [Final Classes](./class_extension/final_classes.md) -# Data Types VII +# Data Types VIII - [Niche Numerics](./niche_numerics.md) - [byte](./niche_numerics/byte.md)