Skip to content

Commit 3eac46b

Browse files
committed
Update documentation
1 parent 59b6a14 commit 3eac46b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CreationalPatterns/Singleton/Greeter/Types/DoubleCheckGreeter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Greeter.Types
66
/// This implementation attempts to be thread-safe without the necessity of taking out a lock every time.
77
/// However, it's easy to get wrong. The pattern needs to be pretty much exactly as above - any significant changes
88
/// 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"/>.
1010
/// </summary>
1111
public class DoubleCheckGreeter : BaseGreeter
1212
{

src/CreationalPatterns/Singleton/Greeter/Types/LocklessFullyLazyGreeter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Greeter.Types
44
{
55
/// <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.
88
/// </summary>
99
public class LocklessFullyLazyGreeter : BaseGreeter
1010
{

0 commit comments

Comments
 (0)