Update library example to use up-to-date API (#875)

This commit is contained in:
Ólafur Páll Geirsson 2018-06-20 23:19:14 +02:00 committed by Alexandre Archambault
parent 8a02ee8f15
commit 0d11bfc86b
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.