Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1277 from greg-murray-volusion/patch-1
Browse files Browse the repository at this point in the history
3.7 Release Notes - fix typo
Orta authored Jan 17, 2020
2 parents 8411178 + 8e42fc8 commit ef13861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/release notes/TypeScript 3.7.md
Original file line number Diff line number Diff line change
@@ -288,7 +288,7 @@ function isString(val: any): val is string {

function yell(str: any) {
if (isString(str)) {
return str.toUppercase();
return str.toUpperCase();
}
throw "Oops!";
}

0 comments on commit ef13861

Please sign in to comment.