Skip to content

Commit 50b4e54

Browse files
authored
Remove incorrect operator identification
The resulting compiled file uses `.concat()` and not `+`. Remove `+` from prose.
1 parent a76e4f2 commit 50b4e54

File tree

1 file changed

+1
-1
lines changed
  • packages/documentation/copy/en/handbook-v2

1 file changed

+1
-1
lines changed

packages/documentation/copy/en/handbook-v2/Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ greet("Maddison", new Date());
362362
Notice two things here:
363363

364364
1. Our `person` and `date` parameters no longer have type annotations.
365-
2. Our "template string" - that string that used backticks (the `` ` `` character) - was converted to plain strings with concatenations (`+`).
365+
2. Our "template string" - that string that used backticks (the `` ` `` character) - was converted to plain strings with concatenations.
366366

367367
More on that second point later, but let's now focus on that first point.
368368
Type annotations aren't part of JavaScript (or ECMAScript to be pedantic), so there really aren't any browsers or other runtimes that can just run TypeScript unmodified.

0 commit comments

Comments
 (0)