[cleanup] Fix a couple of typos.

This commit is contained in:
David Nadlinger 2014-09-14 13:27:06 +02:00
parent 934c67dc75
commit 3ec1a01e8a
2 changed files with 2 additions and 2 deletions

View file

@ -1276,7 +1276,7 @@ int main(int argc, char **argv)
// user perspective. // user perspective.
// //
// Thus, if a library contained some functions in version(unittest), for // Thus, if a library contained some functions in version(unittest), for
// example the tests in std.concurrency, and we ended up inline-scannin // example the tests in std.concurrency, and we ended up inline-scanning
// these functions while doing an -unittest build of a client application, // these functions while doing an -unittest build of a client application,
// we could end up referencing functions that we think are // we could end up referencing functions that we think are
// availableExternally, but have never been touched when the library was built. // availableExternally, but have never been touched when the library was built.

View file

@ -273,7 +273,7 @@ public:
gvar->setInitializer(initVal); gvar->setInitializer(initVal);
gvar->setLinkage(llLinkage); gvar->setLinkage(llLinkage);
// Also set up the edbug info. // Also set up the debug info.
irs->DBuilder.EmitGlobalVariable(gvar, decl); irs->DBuilder.EmitGlobalVariable(gvar, decl);
} }