diff --git a/learn/matcher.ts b/learn/matcher.ts
index 214ec9d..525fb8f 100644
--- a/learn/matcher.ts
+++ b/learn/matcher.ts
@@ -511,7 +511,7 @@ export class Matcher {
return new Score(Scoring.MISMATCH, `No ${description}`);
if (score === KinkPreference.Maybe)
- return new Score(Scoring.WEAK_MISMATCH, `Hesitant on ${description}`);
+ return new Score(Scoring.WEAK_MISMATCH, `Hesitant about ${description}`);
if (score === KinkPreference.Yes)
return new Score(Scoring.WEAK_MATCH, `Likes ${description}`);
@@ -565,7 +565,7 @@ export class Matcher {
break;
case Scoring.WEAK_MISMATCH:
- type = 'Hesitant on';
+ type = 'Hesitant about';
break;
case Scoring.WEAK_MATCH:
@@ -716,7 +716,7 @@ export class Matcher {
if ((yourSubDomRole === SubDomRole.AlwaysDominant) && (theirSubDomRole === SubDomRole.AlwaysDominant))
return new Score(Scoring.MISMATCH, 'No dominants');
- return new Score(Scoring.WEAK_MISMATCH, 'Hesitant on dominants');
+ return new Score(Scoring.WEAK_MISMATCH, 'Hesitant about dominants');
}
if ((yourSubDomRole === SubDomRole.AlwaysSubmissive) || (yourSubDomRole === SubDomRole.UsuallySubmissive)) {
@@ -735,7 +735,7 @@ export class Matcher {
if ((yourSubDomRole === SubDomRole.AlwaysSubmissive) && (theirSubDomRole === SubDomRole.AlwaysSubmissive))
return new Score(Scoring.MISMATCH, 'No submissives');
- return new Score(Scoring.WEAK_MISMATCH, 'Hesitant on submissives');
+ return new Score(Scoring.WEAK_MISMATCH, 'Hesitant about submissives');
}
// You must be a switch