Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
daixtrose authored May 22, 2024
1 parent c94e871 commit b7527f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpp/rpp/observables/blocking_observable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace rpp::details::observables
{
class blocking_disposble final : public base_disposable
class blocking_disposable final : public base_disposable
{
public:
void wait()
Expand Down Expand Up @@ -63,7 +63,7 @@ namespace rpp::details::observables
template<rpp::constraint::observer_strategy<Type> ObserverStrategy>
void subscribe(observer<Type, ObserverStrategy>&& obs) const
{
auto d = disposable_wrapper_impl<blocking_disposble>::make();
auto d = disposable_wrapper_impl<blocking_disposable>::make();
obs.set_upstream(d);
m_original.subscribe(std::move(obs));

Expand Down

0 comments on commit b7527f1

Please sign in to comment.