diff --git a/csharp/ql/src/Concurrency/UnsafeLazyInitialization.qhelp b/csharp/ql/src/Concurrency/UnsafeLazyInitialization.qhelp index ed147f3d4bc..c2ae8d6641c 100644 --- a/csharp/ql/src/Concurrency/UnsafeLazyInitialization.qhelp +++ b/csharp/ql/src/Concurrency/UnsafeLazyInitialization.qhelp @@ -16,7 +16,7 @@ for example by computing the field twice.
  • Make the field volatile using the volatile keyword.
  • Use the System.Lazy class, which is guaranteed to be thread-safe. This can often lead to more elegant code.
  • -
  • Use System.Threading.LazyInitializer. +
  • Use System.Threading.LazyInitializer.