Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordigitalfrost <gerald.hofmaier@gmail.com>2022-08-12 09:51:06 +0300
committerGitHub <noreply@github.com>2022-08-12 09:51:06 +0300
commit590c95020b995ceae6fbaafa4a9578b8ca6a01ee (patch)
tree3af1160cf74a046fefb03840ba01da81d9253cdb /docs/profiles
parent00d99d10b9b26b96db4fb01ca58d0afb0e505582 (diff)
setting_properties.md: correct grammar
Correct the grammar used in the description of default_value
Diffstat (limited to 'docs/profiles')
-rw-r--r--docs/profiles/setting_properties.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/profiles/setting_properties.md b/docs/profiles/setting_properties.md
index 84fb458c63..8138bd77ff 100644
--- a/docs/profiles/setting_properties.md
+++ b/docs/profiles/setting_properties.md
@@ -4,7 +4,7 @@ Each setting in Cura has a number of properties. It's not just a key and a value
* `key` (string): The identifier by which the setting is referenced. This is not a human-readable name, but just a reference string, such as `layer_height_0`. Typically these are named with the most significant category first, in order to sort them better, such as `material_print_temperature`. This is not actually a real property but just an identifier; it can't be changed.
* `value` (optional): The current value of the setting. This can be a function, an arbitrary Python expression that depends on the values of other settings. If it's not present, the `default_value` is used.
-* `default_value`: A default value for the setting if `value` is undefined. This property is required however. It can't be a Python expression, but it can be any JSON type. This is made separate so that CuraEngine can read it out as well for its debugging mode via the command line, without needing a complete Python interpreter.
+* `default_value`: A default value for the setting if `value` is undefined. This property is required. It can't be a Python expression, but it can be any JSON type. This is made separate so that CuraEngine can read it out for its debugging mode via the command line, without needing a complete Python interpreter.
* `label` (string): The human-readable name for the setting. This label is translated.
* `description` (string): A longer description of what the setting does when you change it. This description is translated as well.
* `type` (string): The type of value that this setting contains. Allowed types are: `bool`, `str`, `float`, `int`, `enum`, `category`, `[int]`, `vec3`, `polygon` and `polygons`.
@@ -30,4 +30,4 @@ Each setting in Cura has a number of properties. It's not just a key and a value
* `is_uuid` (optional boolean): Whether or not this setting indicates a UUID-4. If it is, the setting will indicate an error if it's not in the correct format. Only applies to string-type settings.
* `regex_blacklist_pattern` (optional string): A regular expression, where if the setting value matches with this regular expression, it gets an error state. Only applies to string-type settings.
* `error_value` (optional): If the setting value is equal to this value, it will show a setting error. This is used to display errors for non-numerical settings such as checkboxes.
-* `warning_value` (optional): If the setting value is equal to this value, it will show a setting warning. This is used to display warnings for non-numerical settings such as checkboxes. \ No newline at end of file
+* `warning_value` (optional): If the setting value is equal to this value, it will show a setting warning. This is used to display warnings for non-numerical settings such as checkboxes.