You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be more specific in return type of make and /. (#154)
This results in nicer and more expected return types:
```scala
scala> os.root / "a" / "b"
val res0: os.Path = /a/b
```
whereas in previous versions, it contained one or multiple `ThisType`.
E.g. on Scala 3.2
```scala
scala> os.root / "a" / "b"
val res0: os.root.ThisType#ThisType = /a/b
```
* Fixes #153
Pull request: #154
0 commit comments