Skip to content

Commit 8dfdff3

Browse files
authored
Fix typos and enhance clarity in README.md
Updated README.md to improve clarity and fix typos.
1 parent 28b59bb commit 8dfdff3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
[![Build](https://github.com/MaxMahem/windows_hook/actions/workflows/build.yml/badge.svg)](https://github.com/MaxMahem/windows_hook/actions/workflows/build.yml)
44
[![Docs](https://github.com/MaxMahem/windows_hook/actions/workflows/docs.yml/badge.svg)](https://MaxMahem.github.io/windows_hook/windows_hook/index.html)
55
[![dependency status](https://deps.rs/repo/github/MaxMahem/windows_hook/status.svg)](https://deps.rs/repo/github/MaxMahem/windows_hook)
6+
[![codecov](https://codecov.io/github/MaxMahem/windows_hook/graph/badge.svg?token=EH5UONSSJA)](https://codecov.io/github/MaxMahem/windows_hook)
67
![GitHub License](https://img.shields.io/github/license/MaxMahem/windows_hook)
78

8-
99
A safe wrapper around the Windows Hook API for Rust.
1010

11-
This crate provides a safe interface to the Windows Hook API, allowing you to set and unset hooks for various events such as keyboard and mouse input. The `WindowsHook` struct wraps the underlying `winsafe::HHOOK` type and automatically unsets itself when it goes out of scope.
11+
This crate provides a safe interface to the Windows Hook API, enabling you to set and unset hooks for various events, including keyboard and mouse input. The `WindowsHook` struct wraps the underlying `winsafe::HHOOK` type and automatically unsets itself when it goes out of scope.
1212

1313
A builder pattern is also provided, as well as wrappers for the [`Keyboard_LL`](https://learn.microsoft.com/en-us/windows/win32/winmsg/about-hooks#wh_keyboard_ll) (`KeyboardLLHook`) and [`Mouse_LL`](https://learn.microsoft.com/en-us/windows/win32/winmsg/about-hooks#wh_mouse_ll) (`MouseLLHook`) hooks.
1414

1515
## Why not use Winsafe directly?
1616

17-
These wrapers automate ownership and drop of these hooks.
17+
These wrappers automate ownership and the drop of these hooks.
1818

1919
## Example Usage
2020
```rust

0 commit comments

Comments
 (0)