From bef5e5e8b0554d7eae37c96455c25381051beefd Mon Sep 17 00:00:00 2001 From: Alon Bukai Date: Sat, 9 Feb 2019 22:30:30 +0200 Subject: [PATCH] fix: grammar error `take accept` -> `accept` --- tests/dummy/app/pods/docs/features/scheduler/template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dummy/app/pods/docs/features/scheduler/template.md b/tests/dummy/app/pods/docs/features/scheduler/template.md index b09018d..3c79fbd 100644 --- a/tests/dummy/app/pods/docs/features/scheduler/template.md +++ b/tests/dummy/app/pods/docs/features/scheduler/template.md @@ -1,6 +1,6 @@ # Run Loop Scheduler -RxJS has the concept of a [Scheduler][rxjs-scheduler], which is can use to queue work that should happen sometime in the future. Many Observables or Operators that deal with "time" can take accept a Scheduler as an argument if you need to customize how this work is planned. +RxJS has the concept of a [Scheduler][rxjs-scheduler], which is can use to queue work that should happen sometime in the future. Many Observables or Operators that deal with "time" can accept a Scheduler as an argument if you need to customize how this work is planned. Ember also has a means for scheduling tasks in the future; the [Run Loop][run-loop]. In order to schedule events from RxJS into the Run Loop, you can leverage the scheduler provided by `ember-rx`.