Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<format type="text/markdown"><![CDATA[
## Remarks
When you manipulate an immutable dictionary a copy of the original dictionary is made, manipulations applied and a new immutable dictionary is returned.
When you manipulate an immutable dictionary, a new one is returned with the appropriate changes, while the old one is not altered.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, "a new instance"? Or even "a new instance if necessary"?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively: using the old wording but with "minimal copy" instead of "copy". Or "minimal (optimized) copy"

## Examples
This example shows how to create an immutable dictionary and get values from it:
Expand Down