Skip to content

Commit

Permalink
Fix typo (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppeeou authored Oct 4, 2022
1 parent eb8f1fd commit e96be59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/document/crdt/counter.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (p *Counter) RemovedAt() *time.Ticket {
return p.removedAt
}

// SetRemovedAt sets the removal time of this array.
// SetRemovedAt sets the removal time of this element.
func (p *Counter) SetRemovedAt(removedAt *time.Ticket) {
p.removedAt = removedAt
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/document/crdt/element.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
type Container interface {
Element

// Purge physically purges the given chile element.
// Purge physically purges the given child element.
Purge(child Element)

// Descendants returns all descendants of this container.
Expand Down

0 comments on commit e96be59

Please sign in to comment.