aboutsummaryrefslogtreecommitdiff
path: root/src/Sema.zig
diff options
context:
space:
mode:
authorr00ster91 <r00ster91@proton.me>2023-07-21 02:30:47 +0200
committerwooster0 <wooster0@proton.me>2024-05-14 01:13:49 +0900
commit31689d0dd92a683e5ed04facea7bc677ef47785b (patch)
treee7fe2595d8baf84eea1bb3daa662739ec1943223 /src/Sema.zig
parent60830e36e38f49bc797ae731c9dd58d7231039bf (diff)
downloadzig-31689d0dd92a683e5ed04facea7bc677ef47785b.tar.gz
zig-31689d0dd92a683e5ed04facea7bc677ef47785b.zip
Sema: remove periods from the few error messages that have them
For consistency.
Diffstat (limited to 'src/Sema.zig')
-rw-r--r--src/Sema.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Sema.zig b/src/Sema.zig
index 3ff817cbd1..123ba93cbe 100644
--- a/src/Sema.zig
+++ b/src/Sema.zig
@@ -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 },
);
}