Browse Source

Code cosmetics in Dematerialize.

Bart De Smet 8 years ago
parent
commit
2ae97ab1ee

+ 1 - 1
AsyncRx.NET/System.Reactive.Async.Linq/System/Reactive/Linq/Operators/Dematerialize.cs

@@ -22,7 +22,7 @@ namespace System.Reactive.Linq
             if (observer == null)
                 throw new ArgumentNullException(nameof(observer));
 
-            return Create< Notification<TSource>>(
+            return Create<Notification<TSource>>(
                 n => n.AcceptAsync(observer),
                 observer.OnErrorAsync,
                 observer.OnCompletedAsync