Apply suggestions from code review

Style fixes from @edolstra

Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
This commit is contained in:
tomberek 2022-05-20 01:28:20 -04:00 committed by GitHub
parent f21dec5bef
commit 7d7e00272a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -692,7 +692,7 @@ void NixRepl::reloadFiles()
}
for (auto & [i, what] : getValues()) {
notice("Loading Installable '%1%'...", what);
notice("Loading installable '%1%'...", what);
addAttrsToScope(*i);
}
}
@ -943,7 +943,7 @@ struct CmdRepl : InstallablesCommand
auto what = installable->what();
state->forceValue(*val, pos);
auto autoArgs = getAutoArgs(*state);
Value *valPost = state->allocValue();
auto valPost = state->allocValue();
state->autoCallFunction(*autoArgs, *val, *valPost);
state->forceValue(*valPost, pos);
values.push_back( {valPost, what });