diff --git a/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemClient.cs b/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemClient.cs
index c6c41bd7050b..a30288f4c669 100644
--- a/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemClient.cs
+++ b/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemClient.cs
@@ -776,6 +776,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
/// Account name
/// Query to match items in trash
/// Minimum number of entries to search for
+ ///
/// CancellationToken
public IEnumerable EnumerateDeletedItems(string accountName, string filter, int count, Cmdlet cmdlet, CancellationToken cmdletCancellationToken = default(CancellationToken))
{
@@ -801,6 +802,7 @@ public void GetFileProperties(string accountName, string path, bool getAclUsage,
/// Restore a stream or directory from trash to user space. This is a synchronous operation.
/// Not threadsafe when Restore is called for same path from different threads.
///
+ /// Account name
/// The trash directory path in enumeratedeleteditems response
/// Path to where the entry should be restored
/// Type of the entry which is being restored. "file" or "folder"
diff --git a/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemCmdletBase.cs b/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemCmdletBase.cs
index 48223a60af3c..73c389c9b364 100644
--- a/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemCmdletBase.cs
+++ b/src/DataLakeStore/DataLakeStore/DataPlaneModels/DataLakeStoreFileSystemCmdletBase.cs
@@ -74,11 +74,7 @@ internal static bool UsingByteEncoding(Encoding encoding)
/// Converts the stream type string into an Encoding
///
/// The content.
- ///
- /// This is a string representation of the encoding. It can be
- /// "string", "unicode", "bigendianunicode", "ascii", "utf7", or "utf8"
- /// Note, a ToLowerInvariant is done to the type before comparison is made.
- ///
+ ///
///
/// The encoding that was represented by the string
///
diff --git a/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreFirewallRule.cs b/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreFirewallRule.cs
index 18787387b825..16b6c0d255cf 100644
--- a/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreFirewallRule.cs
+++ b/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreFirewallRule.cs
@@ -30,9 +30,7 @@ public class DataLakeStoreFirewallRule
///
/// Initializes a new instance of the class.
///
- /// The property.
- /// The optional name of the file or folder
- /// The optional full path to the file or folder, excluding the file or folder name itself.
+ ///
public DataLakeStoreFirewallRule(FirewallRule baseRule)
{
Name = baseRule.Name;
diff --git a/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreTrustedIdProvider.cs b/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreTrustedIdProvider.cs
index 0bf7ffb00437..85939ce4c9a9 100644
--- a/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreTrustedIdProvider.cs
+++ b/src/DataLakeStore/DataLakeStore/Models/DataLakeStoreTrustedIdProvider.cs
@@ -28,9 +28,7 @@ public class DataLakeStoreTrustedIdProvider
///
/// Initializes a new instance of the class.
///
- /// The property.
- /// The optional name of the file or folder
- /// The optional full path to the file or folder, excluding the file or folder name itself.
+ ///
public DataLakeStoreTrustedIdProvider(TrustedIdProvider baseProvider)
{
Name = baseProvider.Name;