aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2024-04-18 18:57:14 +0200
committerGitHub <noreply@github.com>2024-04-18 18:57:14 +0200
commit089ea64410baef28607b0ee5229c5911e45b469b (patch)
treedfec907db39fe3a6795873363f376aeef5adf0f1 /src
parenta7f4292481c1f9bb26c0d2d81049737ba652c2f1 (diff)
parent15d21f8dbfc5dfac134e8da3662e9cf0e046189e (diff)
Merge pull request #357 from Feoramund/find-intrinsics-in-base
Look for intrinsics in base instead of core
Diffstat (limited to 'src')
-rw-r--r--src/server/collector.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/collector.odin b/src/server/collector.odin
index fde4f30..8279f55 100644
--- a/src/server/collector.odin
+++ b/src/server/collector.odin
@@ -772,7 +772,7 @@ collect_symbols :: proc(
symbol.pkg = "$builtin"
} else if strings.contains(uri, "intrinsics.odin") {
path := filepath.join(
- elems = {common.config.collections["core"], "/intrinsics"},
+ elems = {common.config.collections["base"], "/intrinsics"},
allocator = context.temp_allocator,
)