Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is not a translation problem, I think this is a small issue of consistency in the example that might confuse someone.
The example is about mutability qualifiers but also shows how to use the typeof( .. ).tostring() to obtain a human-readable string of that type. At line 18 it says:
and few lines down (line 37) it says:
there is no consistency between the two sections of the example. If the first writln text is correct then the text of the second writeln should say "cv" and not "*cv". You know, the output of typeof(*cv).stringof is not the same that typeof(cv).stringof, like "*cv: const(int*)" is not the same that "cv: const(int*)".
Assuming that the * must be removed from the second writeln, I just sent a merge request with this proposal. This issue also exists in the main version of the tour. I will propose the same change there if you all agree with it.