diff --git a/backend/iclouddrive/api/drive.go b/backend/iclouddrive/api/drive.go index 5d735ebbd..2a8c7e375 100644 --- a/backend/iclouddrive/api/drive.go +++ b/backend/iclouddrive/api/drive.go @@ -476,7 +476,7 @@ func (d *DriveService) MoveItemByDriveID(ctx context.Context, id, etag, dstID st // CopyDocByItemID copies a document by its item ID. func (d *DriveService) CopyDocByItemID(ctx context.Context, itemID string) (*DriveItemRaw, *http.Response, error) { - // putting name in info doesnt work. extension does work so assume this is a bug in the endpoint + // putting name in info doesn't work. extension does work so assume this is a bug in the endpoint values := map[string]any{ "info_to_update": map[string]any{}, } diff --git a/backend/s3/ibm_signer.go b/backend/s3/ibm_signer.go index 87c1a3feb..e1f9d1831 100644 --- a/backend/s3/ibm_signer.go +++ b/backend/s3/ibm_signer.go @@ -40,7 +40,7 @@ func (signer *IbmIamSigner) SignHTTP(ctx context.Context, credentials aws.Creden return nil } -// NoOpCredentialsProvider is needed since S3 SDK requires having credentials, eventhough authentication is happening via IBM IAM. +// NoOpCredentialsProvider is needed since S3 SDK requires having credentials, even though authentication is happening via IBM IAM. type NoOpCredentialsProvider struct{} // Retrieve returns mock credentials for the NoOpCredentialsProvider.