Skip to content
Snippets Groups Projects
Commit 4162ca65 authored by nweiz@google.com's avatar nweiz@google.com Committed by Natalie Weizenbaum
Browse files

Fix an incorrect word in a pubspec validation error message.

R=rnystrom@google.com
BUG=17216

Review URL: https://codereview.chromium.org//198063006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@33676 260f80e4-7a28-3924-810f-c04153c831b5
parent dab9e4db
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class PubspecFieldValidator extends Validator {
if (authors != null &&
(authors is! List || authors.any((author) => author is! String))) {
errors.add('Your pubspec.yaml\'s "authors" field must be a string, but '
errors.add('Your pubspec.yaml\'s "authors" field must be a list, but '
'it was "$authors".');
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment