summaryrefslogtreecommitdiff
path: root/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs
diff options
context:
space:
mode:
Diffstat (limited to 'external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs')
-rw-r--r--external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs b/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs
index f7b619737d..fc08002c27 100644
--- a/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs
+++ b/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Min.cs
@@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
-namespace System.Reactive.Linq.Observαble
+namespace System.Reactive.Linq.ObservableImpl
{
class Min<TSource> : Producer<TSource>
{
@@ -28,19 +28,19 @@ namespace System.Reactive.Linq.Observαble
}
else
{
- var sink = new δ(this, observer, cancel);
+ var sink = new Delta(this, observer, cancel);
setSink(sink);
return _source.SubscribeSafe(sink);
}
}
- class δ : Sink<TSource>, IObserver<TSource>
+ class Delta : Sink<TSource>, IObserver<TSource>
{
private readonly Min<TSource> _parent;
private bool _hasValue;
private TSource _lastValue;
- public δ(Min<TSource> parent, IObserver<TSource> observer, IDisposable cancel)
+ public Delta(Min<TSource> parent, IObserver<TSource> observer, IDisposable cancel)
: base(observer, cancel)
{
_parent = parent;