Skip to content

Commit

Permalink
Fix zio#7605
Browse files Browse the repository at this point in the history
  • Loading branch information
mleclercq committed Dec 6, 2022
1 parent b533d4c commit 4203c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/zio/Config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ object Config {
*/
sealed trait Error extends Exception with NoStackTrace { self =>
def &&(that: Error): Error = Error.And(self, that)
def ||(that: Error): Error = Error.And(self, that)
def ||(that: Error): Error = Error.Or(self, that)

def prefixed(prefix: Chunk[String]): Error

Expand Down

0 comments on commit 4203c7f

Please sign in to comment.