README.md in motion-objection-0.7.1 vs README.md in motion-objection-0.7.2

- old
+ new

@@ -61,18 +61,18 @@ ## Awaking from Objection Since Objection utilizes _setter_ based injection the initializer does not guarentee that all the object's dependencies have been satisfied. -The `awoke` class method can be given a block which will be invoked once the object has been fully instantiated. +The `awoken` class method can be given a block which will be invoked once the object has been fully instantiated. ```ruby class Ship - awoke do + awoken do # Bootstrap listeners end - awoke do + awoken do # Setup other stuff end end ```