=doc remove duplicated word typos

This commit is contained in:
Konrad Malawski 2015-07-01 23:48:17 +02:00
parent 70403446ce
commit 7eeaf6cd9f
11 changed files with 14 additions and 14 deletions

View file

@ -74,7 +74,7 @@ object LWWRegister {
* It is described in the paper
* <a href="http://hal.upmc.fr/file/index/docid/555588/filename/techreport.pdf">A comprehensive study of Convergent and Commutative Replicated Data Types</a>.
*
* Merge takes the the register with highest timestamp. Note that this
* Merge takes the register with highest timestamp. Note that this
* relies on synchronized clocks. `LWWRegister` should only be used when the choice of
* value is not important for concurrent updates occurring within the clock skew.
*

View file

@ -588,7 +588,7 @@ object Replicator {
* == Update ==
*
* To modify and replicate a [[ReplicatedData]] value you send a [[Replicator.Update]] message
* to the the local `Replicator`.
* to the local `Replicator`.
* The current data value for the `key` of the `Update` is passed as parameter to the `modify`
* function of the `Update`. The function is supposed to return the new value of the data, which
* will then be replicated according to the given consistency level.