Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
fricklerhandwerk authored Mar 8, 2024
1 parent 125d3a3 commit 695ca76
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/manual/src/language/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,8 @@ This is an incomplete overview of language features, by example.
</td>
<td>

Adds the variables to the current set (attrset or `let`). Desugars to `pkgs = pkgs; src = src;`
Adds the variables to the current scope (attribute set or `let` binding).
Desugars to `pkgs = pkgs; src = src;`

</td>
</tr>
Expand All @@ -452,7 +453,8 @@ This is an incomplete overview of language features, by example.
</td>
<td>

Adds the attributes, from the variable in the brackets, to the current set (attrset or `let`). Desugars to `lib = pkgs.lib; stdenv = pkgs.stdenv;`
Adds the attributes, from the attribute set in parentheses, to the current scope (attribute set or `let` binding).
Desugars to `lib = pkgs.lib; stdenv = pkgs.stdenv;`

</td>
</tr>
Expand Down

0 comments on commit 695ca76

Please sign in to comment.