mirror of https://github.com/sbt/sbt.git
Update library example to use up-to-date API (#875)
This commit is contained in:
parent
8a02ee8f15
commit
0d11bfc86b
|
|
@ -183,7 +183,7 @@ That will fetch and use metadata.
|
|||
|
||||
Check for errors in
|
||||
```scala
|
||||
val errors: Seq[((Module, String), Seq[String])] = resolution.metadataErrors
|
||||
val errors: Seq[((Module, String), Seq[String])] = resolution.errors
|
||||
```
|
||||
These would mean that the resolution wasn't able to get metadata about some dependencies.
|
||||
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ That will fetch and use metadata.
|
|||
|
||||
Check for errors in
|
||||
```tut:silent
|
||||
val errors: Seq[((Module, String), Seq[String])] = resolution.metadataErrors
|
||||
val errors: Seq[((Module, String), Seq[String])] = resolution.errors
|
||||
```
|
||||
These would mean that the resolution wasn't able to get metadata about some dependencies.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue