Instance: rename Shutdown() to Break()

This commit is contained in:
Max Kellermann
2018-01-29 23:31:41 +01:00
parent b6013a92e0
commit befd669075
4 changed files with 6 additions and 6 deletions

View File

@@ -97,9 +97,9 @@ struct Instance final
~Instance() noexcept;
/**
* Initiate shutdown. Wrapper for EventLoop::Break().
* Wrapper for EventLoop::Break(). Call to initiate shutdown.
*/
void Shutdown() {
void Break() {
event_loop.Break();
}