Skip to content

Commit 96e8e48

Browse files
Improved phrasing of LFU cache mode
Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]>
1 parent 070d690 commit 96e8e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.HighPerformance/Buffers/StringPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Microsoft.Toolkit.HighPerformance.Buffers
2525
/// The <see cref="GetOrAdd(ReadOnlySpan{char})"/> method provides a best-effort alternative to just creating
2626
/// a new <see cref="string"/> instance every time, in order to minimize the number of duplicated instances.
2727
/// The <see cref="StringPool"/> type will internally manage a highly efficient priority queue for the
28-
/// cached <see cref="string"/> instances, so that when the full capacity is reached, the last recently
28+
/// cached <see cref="string"/> instances, so that when the full capacity is reached, the least frequently
2929
/// used values will be automatically discarded to leave room for new values to cache.
3030
/// </summary>
3131
public sealed class StringPool

0 commit comments

Comments
 (0)