Skip to content

Commit 5074b7c

Browse files
committed
Update DistinctUntilChanged method to use OperatorDistinctUntilChanged for consistency
1 parent b56d6c6 commit 5074b7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ReactiveArduinoCore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class Observable : IObservable<T>, IResetable<T>
172172
// "Fluent" behavior
173173
OperatorWhere<T>& Where(ReactivePredicate<T> condition);
174174
OperatorDistinct<T>& Distinct();
175-
DistinctUntilChanged<T>& DistinctUntilChanged();
175+
OperatorDistinctUntilChanged<T>& DistinctUntilChanged();
176176
OperatorFirst<T>& First();
177177
OperatorLast<T>& Last();
178178
OperatorSkip<T>& Skip(size_t num);

0 commit comments

Comments
 (0)