Skip to content

Commit aaff942

Browse files
authored
Edited line 25. (ronreiter#682)
Deleted this part of the sentence from line 25 ", which an integer in the size of a "word" the default number size of the machine which your program is compiled on" as it didn't make any sense.
1 parent 3f2067e commit aaff942

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tutorials/learn-c.org/en/Variables and Types.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ C uses arrays of characters to define strings, and will be explained in the Stri
2222

2323
### Defining variables
2424

25-
For numbers, we will usually use the type `int`, which an integer in the size of a "word" the default number size of the machine which your program is
26-
compiled on. On most computers today, it is a 32-bit number, which means the number can range from -2,147,483,648 to 2,147,483,647.
25+
For numbers, we will usually use the type `int`. On most computers today, it is a 32-bit number, which means the number can range from -2,147,483,648 to 2,147,483,647.
2726

2827
To define the variables `foo` and `bar`, we need to use the following syntax:
2928

0 commit comments

Comments
 (0)