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

3.7 Release Notes - fix typo #1277

Merged
merged 1 commit into from
Jan 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/release notes/TypeScript 3.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!";
}
Expand Down