From d366667e441dbea9ef4d7f279e07849b11d15dad Mon Sep 17 00:00:00 2001
From: Kevin Moore <kevmoo@users.noreply.github.com>
Date: Thu, 29 Sep 2016 11:51:08 -0700
Subject: [PATCH] Small fix for const array in annotation

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index e33cf788..71434ee4 100644
--- a/README.md
+++ b/README.md
@@ -521,7 +521,7 @@ Tags are defined using the `@Tags` annotation for suites and the `tags` named
 parameter to `test()` and `group()`. For example:
 
 ```dart
-@Tags(["browser"])
+@Tags(const ["browser"])
 
 import "package:test/test.dart";
 
-- 
GitLab