We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10408a2 + 818b60e commit ccaa7e2Copy full SHA for ccaa7e2
1 file changed
src/deepcode/view/IssueProvider.ts
@@ -116,7 +116,7 @@ export class IssueProvider extends NodeProvider {
116
);
117
} else {
118
review.unshift(new Node({
119
- text: `DeepCode found ${!nIssues ? 'no issue! ✅' : `${nIssues} issue${nIssues === 1 ? '' : 's'}`}`,
+ text: `DeepCode found ${!nIssues ? 'no issues! ✅' : `${nIssues} issue${nIssues === 1 ? '' : 's'}`}`,
120
}));
121
const sDuration = Math.round((this.extension.lastAnalysisDuration / 1000 + Number.EPSILON) * 100) / 100;
122
const ts = new Date(this.extension.lastAnalysisTimestamp);
0 commit comments