Skip to content

Commit 42d540b

Browse files
committed
Fix typos.
1 parent 1c1a3bf commit 42d540b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/compacting-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The disadvantage here is that these rows will be re-synced by existing clients.
6262

6363
This is a process that compacts all buckets, by iterating through all operations. This process can be run periodically, for example once a day, or after bulk data modifications.
6464

65-
The process iterates through all operations in reverse order. This effectively processes one bucket at a time, in reverse order of operatoins.
65+
The process iterates through all operations in reverse order. This effectively processes one bucket at a time, in reverse order of operations.
6666

6767
We track each row we've seen in a bucket, along with the last PUT/REMOVE operation we've seen for the row. Whenever we see the same row again, we replace that operation with a MOVE operation, using the PUT/REMOVE op_id as the target.
6868

docs/sync-protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This is typically (but not necessarily) be the first message in the response, an
2626

2727
## StreamingSyncCheckpointDiff
2828

29-
This has the same conceptual meaning as a StreamingSyncCheckpoint. It is an optimization to only sent details for buckets that changed, instead of sending the entire checkpoint over.
29+
This has the same conceptual meaning as a StreamingSyncCheckpoint. It is an optimization to only send details for buckets that changed, instead of sending the entire checkpoint over.
3030

3131
Format:
3232

packages/service-core/src/storage/mongo/MongoCompactor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class MongoCompactor {
6565
}
6666

6767
/**
68-
* Compact buckets by converting operatoins into MOVE and/or CLEAR operations.
68+
* Compact buckets by converting operations into MOVE and/or CLEAR operations.
6969
*
7070
* See /docs/compacting-operations.md for details.
7171
*/

0 commit comments

Comments
 (0)