Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{AzureStorage} fixes Azure/azure-sdk-for-net#31647 #299

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/DirectoryTransferContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public DirectoryTransferContext(Stream journalStream)
}

/// <summary>
/// Gets or sets the callback invoked to tell whether a transfer should be done.
/// Gets or sets the callback invoked to check whether a transfer should be done.
/// </summary>
public ShouldTransferCallbackAsync ShouldTransferCallbackAsync
{
Expand Down
2 changes: 1 addition & 1 deletion lib/TransferCallbacks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Azure.Storage.DataMovement
using System.Threading.Tasks;

/// <summary>
/// Callback invoked to tell whether to overwrite an existing destination.
/// Callback invoked to check whether to overwrite an existing destination.
/// </summary>
/// <param name="source">Instance of source used to overwrite the destination.</param>
/// <param name="destination">Instance of destination to be overwritten.</param>
Expand Down