fix(curriculum): use lower case int in Code-related Concepts and Terms (#60695)

This commit is contained in:
Supravisor
2025-06-07 04:00:00 +12:00
committed by GitHub
parent 777c68235a
commit e8bde95a2d

View File

@@ -29,7 +29,7 @@ Decimal numbers
### --feedback--
`Int` is used for whole numbers, not for numbers with decimal parts.
`int` is used for whole numbers, not for numbers with decimal parts.
---
@@ -37,7 +37,7 @@ Textual information
### --feedback--
`Int` represents whole numbers, not text. `String` is used for textual information.
`int` represents whole numbers, not text.
---
@@ -49,7 +49,7 @@ Images or graphics
### --feedback--
`Int` is for storing numerical values, not for images or graphics.
`int` is for storing numerical values, not for images or graphics.
## --video-solution--