Skip to content

Commit

Permalink
Merge pull request #251 from dlang-tour/wilzbach-patch-3
Browse files Browse the repository at this point in the history
Fix #250 - example's writeln output consistency
  • Loading branch information
wilzbach authored Mar 30, 2018
2 parents 2e7f7d0 + 22851b0 commit 2650987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basics/type-qualifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void main()
// `const` may point to readonly memory,
// but it is readonly as well
const int* cv = &v;
writeln("*cv: ", typeof(cv).stringof);
writeln("cv: ", typeof(cv).stringof);
// *cv = 10; // error!
}
```

0 comments on commit 2650987

Please sign in to comment.