Issue 13671 - http://dlang.org/const3.html incorrectly calls type qualifiers "type constructors"
Summary: http://dlang.org/const3.html incorrectly calls type qualifiers "type construc...
Status: RESOLVED FIXED
Alias: None
Product: D
Classification: Unclassified
Component: dlang.org (show other issues)
Version: D2
Hardware: x86 Mac OS X
: P1 trivial
Assignee: No Owner
URL:
Keywords: pull
Depends on:
Blocks:
 
Reported: 2014-11-02 06:45 UTC by Andrei Alexandrescu
Modified: 2014-12-04 21:23 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Andrei Alexandrescu 2014-11-02 06:45:43 UTC
Type constructors are language artifacts that build new types. Qualifiers are type constructors in the sense that const(T) is a distinct type from T, but there are many other type constructors: T[], T*, templates, etc. The page http://dlang.org/const3.html should refer to qualifiers as "qualifiers", not "type constructors".
Comment 2 github-bugzilla 2014-12-04 05:09:17 UTC
Commits pushed to master at https://github.com/D-Programming-Language/dlang.org

https://github.com/D-Programming-Language/dlang.org/commit/c20a58d71baa6cc88cb8a993d1d7b06e3ff06a03
Issue 13671: Replace "type constructor" with "type qualifier".

https://github.com/D-Programming-Language/dlang.org/commit/97ff72e84f01138ab607c5a074b802d15c17a5e4
Merge pull request #714 from quickfur/issue13671

Issue 13671: Replace "type constructor" with "type qualifier".
Comment 3 Andrei Alexandrescu 2014-12-04 21:23:42 UTC
Thanks!