Skip to content

Commit 12940c9

Browse files
committed
Code changes to address minor review comments.
1 parent 6aa7a5e commit 12940c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Microsoft.Azure.Cosmos/src/Fluent/Settings/VectorIndexDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public VectorIndexDefinition<T> WithQuantizationByteSize(
7575
/// </summary>
7676
/// <param name="indexingSearchListSize">
7777
/// This represents the size of the candidate list of approximate neighbors stored while building the DiskANN index as part of the optimization processes.
78-
/// Large values may improve recall at the expense of latency. This is an optional parameter and applies to index type DiskANN only.
78+
/// This is an optional parameter and applies to index type DiskANN only. The allowed range for this parameter is between 25 and 500.
7979
/// </param>
8080
/// <returns>An instance of the current <see cref="VectorIndexDefinition{T}"/>.</returns>
8181
public VectorIndexDefinition<T> WithIndexingSearchListSize(

Microsoft.Azure.Cosmos/src/Resource/Settings/Embedding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Embedding : IEquatable<Embedding>
3535
public VectorDataType DataType { get; set; }
3636

3737
/// <summary>
38-
/// Gets or sets a long integer representing the dimensions of a vector.
38+
/// Gets or sets an integer representing the dimensions of a vector.
3939
/// </summary>
4040
[JsonProperty(PropertyName = "dimensions")]
4141
public int Dimensions { get; set; }

0 commit comments

Comments
 (0)