Skip to content

Commit 99b3a90

Browse files
committed
format
1 parent a187550 commit 99b3a90

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/tools/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export function findStringInMessages(
187187
if (exactMatches.length > 1) {
188188
throw new Error(
189189
`Found multiple matches for ${stringType}. ` +
190-
`Provide more surrounding context to uniquely identify the intended match.`,
190+
`Provide more surrounding context to uniquely identify the intended match.`,
191191
)
192192
}
193193

@@ -215,7 +215,7 @@ export function findStringInMessages(
215215

216216
throw new Error(
217217
`${stringType} not found in conversation. ` +
218-
`Make sure the string exists and is spelled correctly.`,
218+
`Make sure the string exists and is spelled correctly.`,
219219
)
220220
}
221221

@@ -236,7 +236,7 @@ export function findStringInMessages(
236236
if (secondBest && best.score - secondBest.score < fuzzyConfig.minGap) {
237237
throw new Error(
238238
`Found multiple matches for ${stringType}. ` +
239-
`Provide more unique surrounding context to disambiguate.`,
239+
`Provide more unique surrounding context to disambiguate.`,
240240
)
241241
}
242242

0 commit comments

Comments
 (0)