document inline codeaction

This commit is contained in:
Léana 江 2025-07-13 17:00:33 +02:00
parent 77112d8cad
commit c39f60411b
No known key found for this signature in database
GPG key ID: 4E887A4CA9714ADA

View file

@ -167,3 +167,14 @@ https://nixos.org
```nix
"https://nixos.org"
```
### `inline`
Rewrite a binding to its definition.
```nix
let id = x: x; in a 1
```
=>
```nix
let id = x: x; in (x: x) 1
```