File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/CreationalPatterns/Singleton/Greeter/Types Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace Greeter.Types
6
6
/// This implementation attempts to be thread-safe without the necessity of taking out a lock every time.
7
7
/// However, it's easy to get wrong. The pattern needs to be pretty much exactly as above - any significant changes
8
8
/// are likely to impact either performance or correctness.
9
- /// It doesn't perform as well as the <see cref="LocklessGreeter"/> or <see cref="LocklessFullyLazyGreeter"/> Types .
9
+ /// It doesn't perform as well as the <see cref="LocklessGreeter"/> or <see cref="LocklessFullyLazyGreeter"/>.
10
10
/// </summary>
11
11
public class DoubleCheckGreeter : BaseGreeter
12
12
{
Original file line number Diff line number Diff line change 3
3
namespace Greeter . Types
4
4
{
5
5
/// <summary>
6
- /// Instantiation is triggered by the first reference to the static member of the nested class, which only occurs in Instance.
7
- /// This means the implementation is fully lazy.
6
+ /// Instantiation is triggered by the first reference to the static member of the nested class,
7
+ /// which only occurs in Instance property. This means the implementation is fully lazy.
8
8
/// </summary>
9
9
public class LocklessFullyLazyGreeter : BaseGreeter
10
10
{
You can’t perform that action at this time.
0 commit comments