From 082e73aab537b0f6fce40b459689614f4db852bf Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Tue, 30 Mar 2010 11:05:26 +0000 Subject: [PATCH] Minor documentation change for readability git-svn-id: file:///srv/devel/repo-conversion/nuwi@30 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/AsyncProgressBar/AsyncProgressBar.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/AsyncProgressBar/AsyncProgressBar.cs b/Source/AsyncProgressBar/AsyncProgressBar.cs index 33d8989..a285376 100644 --- a/Source/AsyncProgressBar/AsyncProgressBar.cs +++ b/Source/AsyncProgressBar/AsyncProgressBar.cs @@ -34,8 +34,7 @@ namespace Nuclex.Windows.Forms { // Could probably use VolatileWrite() as well, but for consistency reasons // this is an Interlocked call, too. Mixing different synchronization measures - // for a variable causes trouble so often that this raises a red flag - // whenever I see it :) + // for a variable raises a red flag whenever I see it :) Interlocked.Exchange(ref this.newProgress, -1.0f); }