Commit 77279674 authored by Jakob Otto's avatar Jakob Otto

Fix spelling in caf_core

parent 13e6d6c7
......@@ -132,7 +132,7 @@ void intrusive_ptr_release(actor_storage<T>* x) {
// and destroy the data block
if (x->ctrl.strong_refs.fetch_sub(1, std::memory_order_acq_rel) == 1) {
x->destroy_data();
intrusive_ptr_relase_weak(x);
intrusive_ptr_release_weak(x);
}
}
......
......@@ -188,7 +188,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue fro two cycles is `desired`, but the manager is allowed to return
/// queue for two cycles is `desired`, but the manager is allowed to return
/// any non-negative value.
virtual int32_t acquire_credit(inbound_path* path, int32_t desired);
......
......@@ -68,7 +68,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue fro two cycles is `desired`, but the driver is allowed to return
/// queue for two cycles is `desired`, but the driver is allowed to return
/// any non-negative value.
virtual int32_t acquire_credit(inbound_path* path, int32_t desired) {
CAF_IGNORE_UNUSED(path);
......
......@@ -79,7 +79,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue fro two cycles is `desired`, but the driver is allowed to return
/// queue for two cycles is `desired`, but the driver is allowed to return
/// any non-negative value.
virtual int32_t acquire_credit(inbound_path* path, int32_t desired) {
CAF_IGNORE_UNUSED(path);
......
......@@ -89,7 +89,7 @@ echo "\
This script expects to run at the root directory of a Git clone of CAF.
The current repository must be master. There must be no untracked file
and the working tree status must be equal to the current HEAD commit.
Further, the script expects a relase_note.md file in the current directory
Further, the script expects a release_note.md file in the current directory
with the developer blog checked out one level above, i.e.:
\$HOME
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment