Kevin Jerome

Results 3 issues of Kevin Jerome

As can be seen [here](https://github.com/rust-in-action/code/blob/1st-edition/ch6/ch6-memscan-3/src/main.rs#L20), the extra closing brace prevents compilation. Removing the brace solves the issue.

The issue can be seen here: ![image](https://user-images.githubusercontent.com/31908183/131287379-74f4f2b7-ca6d-4108-ab5e-a7c1518d5511.png)

`MEMORY_BASIC_INFORMATION` is imported on [this line](https://github.com/rust-in-action/code/blob/1st-edition/ch6/ch6-meminfo-win/src/main.rs#L12) as `MEMINFO`, but [this line](https://github.com/rust-in-action/code/blob/1st-edition/ch6/ch6-meminfo-win/src/main.rs#L22) still uses the original import name. Updating line 22 to `MEMINFO` fixes the issue.