C.concrete: Fix typo in introductory text

This commit is contained in:
Severin Meyer 2016-11-17 14:47:44 +01:00
parent 0d02b7e8bf
commit db8273d068

View File

@ -3771,7 +3771,7 @@ A value of regular type can be copied and the result of a copy is an independent
If a concrete type has both `=` and `==`, `a = b` should result in `a == b` being `true`. If a concrete type has both `=` and `==`, `a = b` should result in `a == b` being `true`.
Concrete classes without assignment and equality can be defined, but they are (and should be) rare. Concrete classes without assignment and equality can be defined, but they are (and should be) rare.
The C++ built-in types are regular, and so are standard-library classes, such as `string`, `vector`, and `map`. The C++ built-in types are regular, and so are standard-library classes, such as `string`, `vector`, and `map`.
Concrete types are also often referred to as value types to distinguish them from types uses as part of a hierarchy. Concrete types are also often referred to as value types to distinguish them from types used as part of a hierarchy.
Concrete type rule summary: Concrete type rule summary: