Update src/Mod/Assembly/App/opendcm/core/property.hpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>
This commit is contained in:
luzpaz
2022-01-11 14:45:18 -05:00
committed by Chris Hennes
parent b686a51bc3
commit ba555a57e0

View File

@@ -74,7 +74,7 @@ namespace dcm {
* A property of kind @ref vertex_property will added to vertices, a property of kind @ref object_property to all
* objects and so on.
*
* If the property type is a standart c++ type like int or bool, the default value can't be set by using its
* If the property type is a standard c++ type like int or bool, the default value can't be set by using its
* constructor. Therefore a interface for setting default values is added to the property. If you want
* to assign a default value you just need to add a struct default_value which returns the wanted default
* value with the operator(). If you don't want a default value, just don't add the struct. The implementation