Skip to content

Commit

Permalink
fix: typo (extra ^) in scientific notation explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-abstraction authored and swaroopch committed Jul 23, 2024
1 parent 281d338 commit 56bfc89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Numbers are mainly of two types - integers and floats.

An example of an integer is `2` which is just a whole number.

Examples of floating point numbers (or _floats_ for short) are `3.23` and `52.3E-4`. The `E` notation indicates powers of 10. In this case, `52.3E-4` means `52.3 * 10^-4^`.
Examples of floating point numbers (or _floats_ for short) are `3.23` and `52.3E-4`. The `E` notation indicates powers of 10. In this case, `52.3E-4` means `52.3 * 10^-4`.

> **Note for Experienced Programmers**
>
Expand Down

0 comments on commit 56bfc89

Please sign in to comment.