Skip to content

Commit

Permalink
Minor code fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danslapman committed Dec 2, 2023
1 parent 8bcf464 commit 30741b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions modules/core/src/main/scala/glass/tags/at.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package glass
package tags
package glass.tags

import glass.functions
import glass.PContains

object at extends TaggerObj[PContains] {
implicit def atMap[K, V]: TagApply[PContains, Map[K, V], Option[V], this.type, K] =
Expand Down
4 changes: 2 additions & 2 deletions modules/core/src/main/scala/glass/tags/every.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package glass
package tags
package glass.tags

import glass.functions
import glass.PItems

object every extends TaggerObj[PItems] {
implicit def everyMap[K, V1, V2]: PTagApply[PItems, Map[K, V1], Map[K, V2], V1, V2, this.type, Unit] =
Expand Down
4 changes: 2 additions & 2 deletions modules/core/src/main/scala/glass/tags/index.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package glass
package tags
package glass.tags

import glass.functions
import glass.PProperty

object index extends TaggerObj[PProperty] {
implicit def indexMap[K, V]: TagApply[PProperty, Map[K, V], V, this.type, K] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import scala.quoted.*

import glass.Contains
import glass.macros.internal.*
import scala.annotation.tailrec

object GenContains:
def apply[A]: MkContains[A] = new MkContains[A]
Expand Down

0 comments on commit 30741b5

Please sign in to comment.