diff --git a/Microsoft.Azure.Cosmos/src/RequestOptions/RequestOptions.cs b/Microsoft.Azure.Cosmos/src/RequestOptions/RequestOptions.cs
index a792dffffb..ab68232c23 100644
--- a/Microsoft.Azure.Cosmos/src/RequestOptions/RequestOptions.cs
+++ b/Microsoft.Azure.Cosmos/src/RequestOptions/RequestOptions.cs
@@ -14,12 +14,13 @@ namespace Microsoft.Azure.Cosmos
public class RequestOptions
{
///
- /// Gets or sets the If-Match (ETag) associated with the request in the Azure Cosmos DB service.
+ /// Gets or sets the If-Match (ETag) associated with the request in the Azure Cosmos DB service.
///
///
/// Most commonly used with the Delete* and Replace* methods of such as .
- ///
- /// will ignore if specificed.
+ /// will ignore if specificed.
+ ///
+ ///
///
public string IfMatchEtag { get; set; }
@@ -33,6 +34,8 @@ public class RequestOptions
///
/// To match any Etag use "*"
/// If specified for writes (ex: Create, Replace, Delete) will be ignored.
+ ///
+ ///
///
public string IfNoneMatchEtag { get; set; }