From 0d11bfc86b29789b00bb322e8b980ea6337a9bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93lafur=20P=C3=A1ll=20Geirsson?= Date: Wed, 20 Jun 2018 23:19:14 +0200 Subject: [PATCH] Update library example to use up-to-date API (#875) --- README.md | 2 +- doc/readme/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d76e1012e..49e18b65e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/doc/readme/README.md b/doc/readme/README.md index 94c74e5ea..5a237eba2 100644 --- a/doc/readme/README.md +++ b/doc/readme/README.md @@ -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.