=doc Fix typos in Distributed Data section (#24164)

* =doc receiveUpdateResoponse typo
* =doc and -> an typo
This commit is contained in:
Steffen Gebert 2017-12-19 08:23:45 +01:00 committed by Christopher Batey
parent dbe30bd91e
commit 0a77e79bf3
2 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ public class DataBot extends AbstractActor {
return receiveBuilder()
.match(String.class, a -> a.equals(TICK), a -> receiveTick())
.match(Changed.class, c -> c.key().equals(dataKey), c -> receiveChanged((Changed<ORSet<String>>) c))
.match(UpdateResponse.class, r -> receiveUpdateResoponse())
.match(UpdateResponse.class, r -> receiveUpdateResponse())
.build();
}
@ -81,7 +81,7 @@ public class DataBot extends AbstractActor {
log.info("Current elements: {}", data.getElements());
}
private void receiveUpdateResoponse() {
private void receiveUpdateResponse() {
// ignore
}