diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md
index a22d3794..3f2db63f 100644
--- a/actix-rt/CHANGES.md
+++ b/actix-rt/CHANGES.md
@@ -1,25 +1,22 @@
# Changes
## Unreleased - 2021-xx-xx
-
-* Rename `Arbiter => Worker`. [#254]
* Remove `run_in_tokio`, `attach_to_tokio` and `AsyncSystemRunner`. [#253]
* Return `JoinHandle` from `actix_rt::spawn`. [#253]
-* Remove old `Worker::spawn`. Implementation is now inlined into `actix_rt::spawn`. [#253]
-* Rename `Worker::{send => spawn}` and `Worker::{exec_fn => spawn_fn}`. [#253]
-* Remove `Worker::exec`. [#253]
-* Remove `System::arbiter`. [#256]
-* Remove deprecated `Worker::local_join` and `Worker::is_running`. [#253]
-* `Worker::spawn` now accepts !Unpin futures. [#256]
+* Remove old `Arbiter::spawn`. Implementation is now inlined into `actix_rt::spawn`. [#253]
+* Rename `Arbiter::{send => spawn}` and `Arbiter::{exec_fn => spawn_fn}`. [#253]
+* Remove `Arbiter::exec`. [#253]
+* Remove deprecated `Arbiter::local_join` and `Arbiter::is_running`. [#253]
+* `Arbiter::spawn` now accepts !Unpin futures. [#256]
* `System::new` no longer takes arguments. [#257]
* Remove `System::with_current`. [#257]
* Remove `Builder`. [#257]
* Add `System::with_init` as replacement for `Builder::run`. [#257]
* Rename `System::{is_set => is_registered}`. [#257]
-* Add `WorkerHandle` for sending messages to non-current-thread workers. [#257].
-* `System::worker` now returns a `&WorkerHandle`. [#257]
-* Rename `Worker::{current => handle}` and return a `WorkerHandle` instead. [#257]
-* `Worker::join` now takes self by value. [#257]
+* Add `ArbiterHandle` for sending messages to non-current-thread arbiters. [#257].
+* `System::arbiter` now returns a `&ArbiterHandle`. [#257]
+* Rename `Arbiter::{current => handle}` and return a `ArbiterHandle` instead. [#257]
+* `Arbiter::join` now takes self by value. [#257]
[#253]: https://github.com/actix/actix-net/pull/253
[#254]: https://github.com/actix/actix-net/pull/254
diff --git a/actix-rt/src/worker.rs b/actix-rt/src/arbiter.rs
similarity index 63%
rename from actix-rt/src/worker.rs
rename to actix-rt/src/arbiter.rs
index b7925252..a7f81fc1 100644
--- a/actix-rt/src/worker.rs
+++ b/actix-rt/src/arbiter.rs
@@ -21,55 +21,55 @@ use crate::{
pub(crate) static COUNT: AtomicUsize = AtomicUsize::new(0);
thread_local!(
- static HANDLE: RefCell