Skip to content

Commit 07982c0

Browse files
NateEagiHiD
andauthored
Update exercises/concept/interest-is-interesting/.docs/introduction.md
Integrate review feedback. Co-authored-by: Jeremy Walker <[email protected]>
1 parent e04b939 commit 07982c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/interest-is-interesting/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ C# has three floating-point types:
1212
- `double`: 8 bytes (~15-17 digits precision). This is the most common type. Written as `2.45` or `2.45d`.
1313
- `decimal`: 16 bytes (28-29 digits precision). Normally used when working with monetary data, as its precision reduces the chance of rounding errors. Written as `2.45m`.
1414

15-
As can be seen, each type can store a different number of digits. Trying to store PI in a `float` will only store the first 6 decimal places (with the last stored digit rounded).
15+
As can be seen, each type can store a different number of digits. For example, trying to store PI in a `float` will only store the first 6 decimal places (with the last stored digit rounded).
1616

1717
## While Loops
1818

0 commit comments

Comments
 (0)