🌐 AI搜索 & 代理 主页
Skip to content

Commit d32045b

Browse files
committed
"in"
1 parent 2e9d926 commit d32045b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Prometheus/StringSequence.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public override bool Equals(object? obj)
119119

120120
// There are various ways we can make a StringSequence, comining one or two parents and maybe adding some extra to the start.
121121
// This ctor tries to account for all these options.
122-
private StringSequence(StringSequence inheritFrom, StringSequence thenFrom, ReadOnlyMemory<string> andFinallyPrepend)
122+
private StringSequence(in StringSequence inheritFrom, in StringSequence thenFrom, in ReadOnlyMemory<string> andFinallyPrepend)
123123
{
124124
// Simplify construction if we just need to match one of the cloneable inputs.
125125
if (!inheritFrom.IsEmpty && thenFrom.IsEmpty && andFinallyPrepend.Length == 0)

0 commit comments

Comments
 (0)