Skip to content

Commit 4a868e2

Browse files
committed
have a single compiler version for all the compiler docs
1 parent 8173fee commit 4a868e2

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

GLOSSARY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Duck Typing
2-
If it walks like a duck and quacks like a duck, its a duck. For TypeScript if it has all the members structurally then it okay for other things (irrespecitive of name) that accept that structure.
2+
If it walks like a duck and quacks like a duck, it is a duck. For TypeScript if it has all the members structurally then it is okay for other things (irrespecitive of name) that accept that structure.
33

44
# OE
55
Operating Environment. I'd like to use the term Operating System, but that is not necessarily what I mean here. Think Browser,Node.js,WScriptHost etc.
66

77
# Incremental Parsing
8-
Re-Parsing the user edits the code.
8+
Re-Parsing as the user edits the code.

code/compiler/scanner/package.json renamed to code/compiler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "scanner",
2+
"name": "compiler",
33
"version": "1.0.0",
44
"description": "",
55
"main": "runScanner.js",

code/compiler/scanner/tsconfig.json renamed to code/compiler/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"!./node_modules/**/*"
2121
],
2222
"files": [
23-
"./runScanner.ts",
24-
"./runScannerWithPositions.ts",
23+
"./scanner/runScanner.ts",
24+
"./scanner/runScannerWithPositions.ts",
2525
"./typings/node/node.d.ts",
2626
"./typings/tsd.d.ts"
2727
]
File renamed without changes.

0 commit comments

Comments
 (0)