fix Lifecycle javadoc typo (#7489)

This commit is contained in:
Clint Wylie 2019-04-16 10:23:01 -07:00 committed by Fangjin Yang
parent 625c030744
commit 7385dbc9e8
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ import java.util.concurrent.locks.ReentrantLock;
* - Stage.SERVER: This lifecycle stage is intended for all 'server' objects, and currently only contains the Jetty
* module, but any sort of 'server' that expects most Lifecycle objects to be initialized by the time it starts, and
* still available at the time it stops can logically live in this stage.
* - Stage.ANNOUNCENTS: Any object which announces to a cluster this servers location belongs in this stage. By being
* - Stage.ANNOUNCEMENTS: Any object which announces to a cluster this servers location belongs in this stage. By being
* last, we can be sure that all servers are initialized before we advertise the endpoint locations, and also can be
* sure that we un-announce these advertisements prior to the Stage.SERVER objects stop.
*