README: Fix use of angle brackets

This commit is contained in:
James Reed 2020-07-23 13:03:12 -06:00
parent 1e6898e9a5
commit 9befede205
No known key found for this signature in database
GPG Key ID: 0BE2BD33C5E8125E
1 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,7 @@ local ez = require("awesome-ez")
Use `ez.keytable` to define key bindings:
```lua
local globalkeys = ez.keytable {
["M-<Return>"] = {awful.spawn, "xterm"},
["M-Return"] = {awful.spawn, "xterm"},
...
}
```
@ -40,8 +40,6 @@ Binding definition strings consist of modifier characters and a key or button
separated by hyphens, e.g. `M-S-x` is the combination of `Mod4`, `Shift`, and
the `x` key.
Key names longer than 1 character must be surrounded by `<>`, e.g. `M-<Return>`.
See the [API documentation](https://jcrd.github.io/awesome-ez/) for
descriptions of all functions.