Skip to content

Commit 61b7146

Browse files
committed
docs: Update README.md
1 parent 2f41fe3 commit 61b7146

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1. Install the lib in your project: `npm install libwin32`
1717
1. Import the functions, constants and types you need. You may either import from `libwin32` or from `libwin32/<dllname>` (without the `.dll` extension). Currently, only two dlls are available: `kernel32` and `user32`.
1818
1. Call the functions as instructed by the [Win32 API documentation](https://learn.microsoft.com/en-us/windows/win32/api/). All functions, constants and types are named accordingly.
19-
* Constants like `WM_DESTROY` are exported as `const enum`s, where the prefix is the name of the enum. For instance, `WM_DESTROY` and `WM_KEYDOWN` are exported as `WM.DESTROY` and `WM_KEYDOWN`, respectively.
19+
* Constants like `WM_DESTROY` are exported as `const enum`s, where the prefix is the name of the enum. For instance, `WM_DESTROY` and `WM_KEYDOWN` are exported as `WM.DESTROY` and `WM.KEYDOWN`, respectively.
2020

2121
````js
2222
import { MessageBox, MB } from 'libwin32'
@@ -41,9 +41,9 @@ $ npm install
4141
$ npm run build
4242
````
4343

44-
The output goes to `/dist` for the library, and `/demos` for the demos.
44+
The output goes to `/dist`.
4545

46-
#### > See the demos
46+
#### > Run the demos
4747
Build the lib, then:
4848

4949
* Without bundling:

0 commit comments

Comments
 (0)