Fix toString for Update

This commit is contained in:
Ethan Atkins 2019-05-09 17:54:00 -07:00
parent b6ad077a72
commit f60d4060dd
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ object Watch {
override val occurredAt: FiniteDuration
) extends Event
with Event.Impl {
override def toString: String = s"Update(path, ${occurredAt.toEpochString})"
override def toString: String = s"Update($path, ${occurredAt.toEpochString})"
}
object Update {
def apply(event: FileEvent[FileAttributes]): Update =