Skip to content

Commit afb3945

Browse files
authored
chore: Typos in comments (#1361)
1 parent e897372 commit afb3945

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

schema/resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ func (r *Resource) CalculateCQID(deterministicCQID bool) error {
9797
}
9898

9999
func (r *Resource) storeCQID(value uuid.UUID) error {
100-
// We skeep if _cq_id is not present.
101-
// Mostly the problem here is because the transformaiton step is baked into the the resolving step
100+
// We skip if _cq_id is not present.
101+
// Mostly the problem here is because the transformation step is baked into the resolving step
102102
if r.Table.Columns.Get(CqIDColumn.Name) == nil {
103103
return nil
104104
}

writers/batchwriter/batchwriter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ func (w *BatchWriter) startWorker(_ context.Context, msg *message.WriteInsert) e
331331
w.workersWaitGroup.Add(1)
332332
go func() {
333333
defer w.workersWaitGroup.Done()
334-
// TODO: we need to create a canalleble context that then can be cancelled via
334+
// TODO: we need to create a cancellable context that then can be cancelled via
335335
// w.cancelWorkers()
336336
w.worker(context.Background(), tableName, ch, flush)
337337
}()

0 commit comments

Comments
 (0)