Skip to content

Commit 1d0d992

Browse files
Update curriculum_spec.md
1 parent ad682e1 commit 1d0d992

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

curriculum_spec.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ int main() {
3838
/// @ref:step1.1
3939
/// Use scanf here to read in two numbers to x and y!
4040
41-
sum = x + y
4241
printf( "%d", sum );
4342
return 0;
4443
}
@@ -52,7 +51,7 @@ next: step_2.md
5251
prev: introduction.md
5352
jumpto: @ref:step1.1
5453
---
55-
Given a variable declaration `int x` we can use `scanf("%d", x)` can be used to a read an integer from
54+
Given a variable declaration `int x` we can use `scanf("%d", x)` to a read an integer from
5655
the console and assign it to x. Use that [here](@ref:step1.1) to read in two integers, compute the sum,
5756
and assign it to `sum`!
5857
```

0 commit comments

Comments
 (0)