Skip to content

Commit f9f8009

Browse files
authored
fix pound column (#363)
1 parent 4c90d6b commit f9f8009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Dependencies/DependencyValues.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public struct DependencyValues: Sendable {
233233
fileID fileID: StaticString = #fileID,
234234
filePath filePath: StaticString = #filePath,
235235
line line: UInt = #line,
236-
column column: UInt = #line,
236+
column column: UInt = #column,
237237
function function: StaticString = #function
238238
) -> Key.Value {
239239
get {
@@ -496,7 +496,7 @@ public final class CachedValues: @unchecked Sendable {
496496
filePath: StaticString = #filePath,
497497
function: StaticString = #function,
498498
line: UInt = #line,
499-
column: UInt = #line
499+
column: UInt = #column
500500
) -> Key.Value {
501501
lock.lock()
502502
defer { lock.unlock() }

0 commit comments

Comments
 (0)