Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -549,7 +549,7 @@ battleship
- [Subtypes](./interfaces/subtypes.md)
- [Multiple Implementations](./interfaces/multiple_implementations.md)

# Data Types V
# Data Types VI

<!-- Note: Put a joke about the "A train leaves chicago at ..." problems.
Make them do one. -->
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/exceptions_ii/unchecked_exceptions.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down