fix spelling mistakes

This commit is contained in:
Xevion
2020-02-27 18:14:45 -06:00
parent 554b6f99d4
commit 55842fecb2

View File

@@ -36,8 +36,8 @@ If you find something incorrect, feel free to contribute and modify.
- [Bitwise Meanings](#bitwise-meanings) - [Bitwise Meanings](#bitwise-meanings)
- [How to Sort Different Types of Arrays](#how-to-sort-different-types-of-arrays) - [How to Sort Different Types of Arrays](#how-to-sort-different-types-of-arrays)
- [Primitives](#primitives) - [Primitives](#primitives)
- [List Implementees (ArrayList, ?, ?..)](#list-implementees-arraylist--) - [List Implementers (ArrayList, ?, ?..)](#list-implementers-arraylist--)
- [char And int Are Interchangable](#char-and-int-are-interchangable) - [char And int Are Interchangeable](#char-and-int-are-interchangeable)
- [Classes Call From Where They Originate](#classes-call-from-where-they-originate) - [Classes Call From Where They Originate](#classes-call-from-where-they-originate)
- [List.remove() Element Shifting](#listremove-element-shifting) - [List.remove() Element Shifting](#listremove-element-shifting)
@@ -398,9 +398,9 @@ For lists, one can use `Collections.sort` to sort any class that implements the
#### Primitives #### Primitives
#### List Implementees (ArrayList, ?, ?..) #### List Implementers (ArrayList, ?, ?..)
### char And int Are Interchangable ### char And int Are Interchangeable
``` ```
void method(int a, char b) void method(int a, char b)