Merge pull request #1386 from a14n/fix-template

fix template
diff --git a/lib/src/rules/avoid_shadowing_type_parameters.dart b/lib/src/rules/avoid_shadowing_type_parameters.dart
index e39455b..ef462cf 100644
--- a/lib/src/rules/avoid_shadowing_type_parameters.dart
+++ b/lib/src/rules/avoid_shadowing_type_parameters.dart
@@ -10,7 +10,7 @@
 
 const _details = r'''
 
-**AVOID** shadow type parameters.
+**AVOID** shadowing type parameters.
 
 **BAD:**
 ```
diff --git a/test/integration_test.dart b/test/integration_test.dart
index 645d6f4..5bf3e5a 100644
--- a/test/integration_test.dart
+++ b/test/integration_test.dart
@@ -69,8 +69,7 @@
         await cli.run(['test/_data/p3', 'test/_data/p3/_pubpspec.yaml']);
         expect(collectingOut.trim(),
             startsWith('1 file analyzed, 0 issues found, in'));
-        // TODO(pq): re-enable w/ analyzer >=0.33.1 https://github.com/dart-lang/linter/issues/1195
-      }, skip: true);
+      });
     });
     group('p4', () {
       IOSink currentOut = outSink;
@@ -802,8 +801,7 @@
               '1 file analyzed, 3 issues found',
             ]));
         expect(exitCode, 1);
-        // TODO(pq): re-enable w/ analyzer >=0.33.1 https://github.com/dart-lang/linter/issues/1195
-      }, skip: true);
+      });
     });
 
     group('examples', () {