From ba555a57e00306ff2fe46503e03d82f8d32e31fb Mon Sep 17 00:00:00 2001 From: luzpaz Date: Tue, 11 Jan 2022 14:45:18 -0500 Subject: [PATCH] Update src/Mod/Assembly/App/opendcm/core/property.hpp Co-authored-by: Chris Hennes --- src/Mod/Assembly/App/opendcm/core/property.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Assembly/App/opendcm/core/property.hpp b/src/Mod/Assembly/App/opendcm/core/property.hpp index d0ebde8edb..2891a12824 100644 --- a/src/Mod/Assembly/App/opendcm/core/property.hpp +++ b/src/Mod/Assembly/App/opendcm/core/property.hpp @@ -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