Skip to content

Commit

Permalink
[master] chore: fix some comments and typos (#1623) (#1624)
Browse files Browse the repository at this point in the history
Co-authored-by: MarkDaveny <168091250+MarkDaveny@users.noreply.github.com>
  • Loading branch information
blink1073 and MarkDaveny committed Apr 29, 2024
1 parent b50f397 commit 21af53e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion etc/compile_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function version {
echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }';
}

# compile_check will attempt to build the the internal/test/compilecheck project
# compile_check will attempt to build the internal/test/compilecheck project
# using the provided Go version. This is to simulate an end-to-end use case.
# This check will only run on environments where the Go version is greater than
# or equal to the given version.
Expand Down
2 changes: 1 addition & 1 deletion mongo/options/mongooptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const (
// UpdateLookup includes a delta describing the changes to the document and a copy of the entire document that
// was changed.
UpdateLookup FullDocument = "updateLookup"
// WhenAvailable includes a post-image of the the modified document for replace and update change events
// WhenAvailable includes a post-image of the modified document for replace and update change events
// if the post-image for this event is available.
WhenAvailable FullDocument = "whenAvailable"
)
Expand Down
2 changes: 1 addition & 1 deletion mongo/writeconcern/writeconcern.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var ErrNegativeWTimeout = errors.New("write concern `wtimeout` field cannot be n
type WriteConcern struct {
// W requests acknowledgment that the write operation has propagated to a
// specified number of mongod instances or to mongod instances with
// specified tags. It sets the the "w" option in a MongoDB write concern.
// specified tags. It sets the "w" option in a MongoDB write concern.
//
// W values must be a string or an int.
//
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/auth/speculative_x509_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func createSpeculativeX509Handshake() []bsoncore.Document {
return []bsoncore.Document{hello}
}

// createSpeculativeX509Handshake creates the server replies for a handshake + X509 authentication attempt.
// createRegularX509Handshake creates the server replies for a handshake + X509 authentication attempt.
// There are two replies:
//
// 1. hello reply
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ func (op Operation) Execute(ctx context.Context) error {
}
}()
for {
// If we're starting a retry and the the error from the previous try was
// If we're starting a retry and the error from the previous try was
// a context canceled or deadline exceeded error, stop retrying and
// return that error.
if errors.Is(prevErr, context.Canceled) || errors.Is(prevErr, context.DeadlineExceeded) {
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/operation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func TestOperation(t *testing.T) {
_, err := op.selectServer(context.Background(), 1, nil)
noerr(t, err)

// Assert the the selector is an operation selector wrapper.
// Assert the selector is an operation selector wrapper.
oss, ok := d.params.selector.(*opServerSelector)
require.True(t, ok)

Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/topology/polling_srv_records_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ func TestPollingSRVRecordsLoadBalanced(t *testing.T) {

func TestPollSRVRecordsMaxHosts(t *testing.T) {
// simulateSRVPoll creates a topology with srvMaxHosts, mocks the DNS changes described by
// recordsToAdd and recordsToRemove, and returns the the topology.
// recordsToAdd and recordsToRemove, and returns the topology.
simulateSRVPoll := func(srvMaxHosts int, recordsToAdd []*net.SRV, recordsToRemove []*net.SRV) (*Topology, func(ctx context.Context) error) {
t.Helper()

Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/wiremessage/wiremessage.go
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ func ReadReplyCursorID(src []byte) (cursorID int64, rem []byte, ok bool) {
return readi64(src)
}

// ReadReplyStartingFrom reads the starting from from src.
// ReadReplyStartingFrom reads the starting from src.
func ReadReplyStartingFrom(src []byte) (startingFrom int32, rem []byte, ok bool) {
return readi32(src)
}
Expand Down

0 comments on commit 21af53e

Please sign in to comment.