Apply suggestions from code review

Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
This commit is contained in:
Robert Hensing 2023-11-17 10:56:23 +01:00 committed by GitHub
parent c819375769
commit 7b0e8c5c2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ a = src-set.a; b = src-set.b; c = src-set.c;
when used while defining local variables in a let-expression or while
defining a set.
in a let expression, inherit can be used to selectively bring specific attributes of a set into scope. For example
In a `let` expression, `inherit` can be used to selectively bring specific attributes of a set into scope. For example
```nix
@ -156,7 +156,7 @@ in
}
```
both resolve to `{ names = [ "a" "b" ]; }`.
both evaluate to `{ names = [ "a" "b" ]; }`.
## Functions