Skip to content

Commit fefa2f6

Browse files
committed
Fix a few typos
1 parent 8f3e372 commit fefa2f6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,11 @@ Also:
8888
- Invoke `npm install -g yarn vsce` which will install Yarn, a dependency manager, and vsce, a VS Code packaging library.
8989
- In the project root directory, invoke `yarn install` which will install all dependencies using Yarn.
9090
- In the project root directory, invoke `vsce package` which will produce a .vsix file.
91-
- To install, in VS Code on the extension pane, click on the three dots at the top right then select `Install From VSIX and navigate to the package you just produced.
91+
- To install, in VS Code on the extension pane, click on the three dots at the top right then select `Install From VSIX` and navigate to the package you just produced.
9292

9393
### Generating the language library definitions
94-
Replace `servers/resources/nwscript.nss` by its new version and execute `yarn run generate-lib-defs` in the server project root directory.
94+
95+
Replace `server/resources/nwscript.nss` by its new version and execute `yarn run generate-lib-defs` in the server project root directory.
9596

9697
## Issues
9798

server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ connection.onInitialized(async () => {
5050
filesCount = filesPath.length;
5151

5252
progressReporter = await server.connection.window.createWorkDoneProgress();
53-
progressReporter.begin("Indexing files ...", 0);
53+
progressReporter.begin("Indexing files for NWScript: EE LSP ...", 0);
5454
const partCount = filesCount / numCPUs;
5555
for (let i = 0; i < numCPUs; i++) {
5656
const worker = cluster.fork();

0 commit comments

Comments
 (0)