File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -308,13 +308,13 @@ extension (bs: Long)
308
308
extension (bytes : Bytes )
309
309
def memory : Memory = Memory (bytes.size)
310
310
311
- def workingDirectory [PathType : Concretizable across Paths from Text ]
311
+ def workingDirectory [PathType : Instantiable across Paths from Text ]
312
312
(using directory : WorkingDirectory )
313
313
: PathType =
314
314
315
315
directory.path[PathType ]
316
316
317
- def homeDirectory [PathType : Concretizable across Paths from Text ]
317
+ def homeDirectory [PathType : Instantiable across Paths from Text ]
318
318
(using directory : HomeDirectory )
319
319
: PathType =
320
320
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ object HomeDirectory:
27
27
trait HomeDirectory :
28
28
def directory (): Text
29
29
30
- def path [PathType : Concretizable across Paths from Text ]: PathType =
30
+ def path [PathType : Instantiable across Paths from Text ]: PathType =
31
31
PathType (directory())
Original file line number Diff line number Diff line change @@ -31,5 +31,5 @@ object WorkingDirectory:
31
31
trait WorkingDirectory :
32
32
def directory (): Text
33
33
34
- def path [PathType : Concretizable across Paths from Text ]: PathType =
34
+ def path [PathType : Instantiable across Paths from Text ]: PathType =
35
35
PathType (directory())
You can’t perform that action at this time.
0 commit comments