Skip to content

Commit 70696ec

Browse files
committed
edit .gitattributes
1 parent 20e1cf7 commit 70696ec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*.htm eol=lf
2424
*.css eol=lf
2525
*.less eol=lf
26+
*.xml eol=lf
2627
.gitattributes eol=lf
2728
.gitignore eol=lf
2829
.npmignore eol=lf

docs/PeterO.Numbers.EContext.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public sealed class EContext
44

5-
Contains parameters for controlling the precision, rounding, and exponent range of arbitrary-precision numbers. (The "E" stands for "extended", and has this prefix to group it with the other classes common to this library, particularly EDecimal, EFloat, and ERational.). <b>Thread safety:</b> With one exception, instances of this class are immutable and are safe to use among multiple threads. The one exception involves the `Flags` property. If the context's `HasFlags` property (a read-only property) is `true` , the `Flags` property is mutable, thus making the context mutable. This class doesn't synchronize access to such mutable contexts, so applications should provide their own synchronization if a context with the `HasFlags` property set to `true` will be shared among multiple threads and at least one of those threads needs to write the `Flags` property (which can happen, for example, by passing the context to most methods of `EDecimal` such as `Add` ).
5+
Contains parameters for controlling the precision, rounding, and exponent range of arbitrary-precision numbers. (The "E" stands for "extended", and has this prefix to group it with the other classes common to this library, particularly EDecimal, EFloat, and ERational.).<b>Thread safety:</b> With one exception, instances of this class are immutable and are safe to use among multiple threads. The one exception involves the `Flags` property. If the context's `HasFlags` property (a read-only property) is `true` , the `Flags` property is mutable, thus making the context mutable. This class doesn't synchronize access to such mutable contexts, so applications should provide their own synchronization if a context with the `HasFlags` property set to `true` will be shared among multiple threads and at least one of those threads needs to write the `Flags` property (which can happen, for example, by passing the context to most methods of `EDecimal` such as `Add` ).
66

77
### EContext Constructor
88

0 commit comments

Comments
 (0)