Skip to content

Commit 809bb6f

Browse files
committed
Changed a handful of 'const's to 'let's in the README.
1 parent a27d918 commit 809bb6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ import { CommandSocket } from "@command-socket/browser-client";
5252
// OR
5353
import { CommandSocket } from "@command-socket/node-client";
5454

55-
const serverPort: number = 3849;
56-
const serverIP: string = "4.3.2.1";
57-
const wsAddress: string = "ws://" + serverIP + ":" + serverPort;
55+
let serverPort: number = 3849;
56+
let serverIP: string = "4.3.2.1";
57+
let wsAddress: string = "ws://" + serverIP + ":" + serverPort;
5858

5959
let client: CommandSocket = new CommandSocket(wsAddress);
6060
```

0 commit comments

Comments
 (0)