fix typo to clarify nls string, #98576

This commit is contained in:
Johannes Rieken
2020-06-03 15:51:53 +02:00
parent ceb87a1e62
commit 88e4a42e81
@@ -154,7 +154,7 @@ export class AccessibilityProvider implements IListAccessibilityProvider<Call> {
if (this.getDirection() === CallHierarchyDirection.CallsFrom) {
return localize('from', "calls from {0}", element.item.name);
} else {
return localize('to', "callers fo {0}", element.item.name);
return localize('to', "callers of {0}", element.item.name);
}
}
}