Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify distinction between arrays and collections
Updated the description of Java arrays to avoid confusion with the term "collection" as used in the Java Collections Framework. Previously, the text referred to arrays as collections, which is inaccurate in Java's formal terminology. The native Java arrays are not part of the Collections Framework, as they do not implement the `Collection` interface or its subtypes, such as `List`, `Set`, or `Map`. They are simply fixed-size objects that hold elements of the same type. This change helps prevent misunderstanding and aligns the description with Java's official definitions.
- Loading branch information