Skip to content

Commit

Permalink
Make environment value getter subscript public
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasf committed Feb 18, 2024
1 parent 496753e commit d0e6723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftSCAD/Environment/Environment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public struct Environment {
return Environment(values: values)
}

subscript(key: ValueKey) -> Any? {
public subscript(key: ValueKey) -> Any? {
values[key]
}
}
Expand Down

0 comments on commit d0e6723

Please sign in to comment.