Bug 13671 – http://dlang.org/const3.html incorrectly calls type qualifiers "type constructors"

Status
RESOLVED
Resolution
FIXED
Severity
trivial
Priority
P1
Component
dlang.org
Product
D
Version
D2
Platform
x86
OS
Mac OS X
Creation time
2014-11-02T06:45:00Z
Last change time
2014-12-04T21:23:42Z
Keywords
pull
Assigned to
nobody
Creator
andrei

Comments

Comment #0 by andrei — 2014-11-02T06:45:43Z
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 #1 by hsteoh — 2014-12-04T05:06:47Z
Comment #2 by github-bugzilla — 2014-12-04T05:09:17Z
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 by andrei — 2014-12-04T21:23:42Z
Thanks!