Skip to content

Commit fbedc00

Browse files
authored
Apply suggestions from code review
1 parent a7188b7 commit fbedc00

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/CoreApi/AddFileOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ public class AddFileOptions
9898
public IProgress<TransferProgress>? Progress { get; set; }
9999

100100
/// <summary>
101-
/// Flag for no cache argument
101+
/// Add the file using filestore. Implies raw-leaves.
102102
/// </summary>
103103
public bool? NoCopy {get; set; }
104104

105105
/// <summary>
106-
/// Flag for fs cache argument
106+
/// Check the filestore for pre-existing blocks.
107107
/// </summary>
108108
public bool? FsCache{get; set; }
109109
}

src/CoreApi/IFilestoreApiObjectResponse.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public interface IFilestoreApiObjectResponse
2828
public string Size { get; set; }
2929

3030
/// <summary>
31-
/// The object status.k
31+
/// The object status.
3232
/// </summary>
3333
public string Status { get; set; }
3434
}
3535

3636
/// <summary>
3737
/// Model for the hold filestore key
3838
/// </summary>
39-
public interface IFilesStoreKey
39+
public interface IFilestoreKey
4040
{
4141
/// <summary>
4242
/// Key value.

0 commit comments

Comments
 (0)