Commit 13e6d6c7 authored by Jakob Otto's avatar Jakob Otto

Fix pointed out typos

parent 78f54969
......@@ -217,7 +217,7 @@ public:
template <class Mutex, class CondVar>
bool synchronized_push_front(Mutex& mtx, CondVar& cv, unique_pointer ptr) {
return synchronized_push_front(mtx, cv, ptr.relase());
return synchronized_push_front(mtx, cv, ptr.release());
}
template <class Mutex, class CondVar, class... Ts>
......
......@@ -173,7 +173,7 @@ public:
return system().middleman();
}
/// Adds the unitialized `scribe` instance `ptr` to this broker.
/// Adds the uninitialized `scribe` instance `ptr` to this broker.
void add_scribe(scribe_ptr ptr);
/// Creates and assigns a new `scribe` from given native socked `fd`.
......
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