Sema: remove periods from the few error messages that have them

For consistency.
This commit is contained in:
r00ster91 2023-07-21 02:30:47 +02:00 committed by wooster0
parent 60830e36e3
commit 31689d0dd9

View File

@ -9531,7 +9531,7 @@ fn handleExternLibName(
return sema.fail(
block,
src_loc,
"dependency on dynamic library '{s}' requires enabling Position Independent Code. Fixed by '-l{s}' or '-fPIC'.",
"dependency on dynamic library '{s}' requires enabling Position Independent Code; fixed by '-l{s}' or '-fPIC'",
.{ lib_name, lib_name },
);
}