diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-24T14·41+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-24T14·41+0200 |
commit | 5bc41d78ffcd2952eaddb20ef129f48e94d60cb0 (patch) | |
tree | 86e3fae7ffafd81e5956bccdbea1608effc92dee /src/libexpr/eval.hh | |
parent | 9e4bb2045548e2166102f4a8eedf43741e1a6a98 (diff) |
Rename "attribute sets" to "sets"
We don't have any other kind of sets so calling them attribute sets is unnecessarily verbose.
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 8707182ed19e..b896137a6907 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -19,8 +19,8 @@ class EvalState; struct Attr; -/* Attribute sets are represented as a vector of attributes, sorted by - symbol (i.e. pointer to the attribute name in the symbol table). */ +/* Sets are represented as a vector of attributes, sorted by symbol + (i.e. pointer to the attribute name in the symbol table). */ #if HAVE_BOEHMGC typedef std::vector<Attr, gc_allocator<Attr> > BindingsBase; #else |