Skip to content

Update java-primitives.md #3208

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ Types of change:

### Fixed

## May 24th 2023

### Fixed
- [Java - Java Primitives - Fix float size](https://github.com/enkidevs/curriculum/pull/3208)

## May 23rd 2023

Expand Down
2 changes: 1 addition & 1 deletion java/java-fundamentals/java-basics/java-primitives.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ When initialized, if they aren't given any values, each primitive type will defa
| short | 0 | 2^16 |
| int | 0 | 2^32 |
| long | 0L | 2^64 |
| float | 0.00f | 2^64 |
| float | 0.00f | 2^32 |
| double | 0.00d | 2^64 |
| boolean | false | 2 |
| char | '\u0000' | 2^16 |
Expand Down