=doc Fix typos in Distributed Data section (#24164)
* =doc receiveUpdateResoponse typo * =doc and -> an typo
This commit is contained in:
parent
dbe30bd91e
commit
0a77e79bf3
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue