@@ -963,11 +963,11 @@ void main() {
963963 '<a href="${HTMLBASE_PLACEHOLDER }fake/SpecialList/operator_get.html">SpecialList.operator []</a> ' ));
964964 }, skip: 'https://github.com/dart-lang/dartdoc/issues/1285' );
965965
966- test ('codeifies a class from the SDK' , () {
966+ test ('adds <code> tag to a class from the SDK' , () {
967967 expect (docsAsHtml, contains ('<code>String</code>' ));
968968 });
969969
970- test ('codeifies a reference to its parameter' , () {
970+ test ('adds <code> tag to a reference to its parameter' , () {
971971 expect (docsAsHtml, contains ('<code>value</code>' ));
972972 });
973973
@@ -2015,7 +2015,7 @@ void main() {
20152015 expect (fancyList.publicInstanceFields, hasLength (1 ));
20162016 });
20172017
2018- test ('get contants ' , () {
2018+ test ('get constants ' , () {
20192019 expect (fancyList.publicConstantFields, hasLength (0 ));
20202020 });
20212021
@@ -2519,7 +2519,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans,
25192519 expect (m1.enclosingElement.name, equals (classB.name));
25202520 });
25212521
2522- test ('overriden method' , () {
2522+ test ('overridden method' , () {
25232523 expect (m1.overriddenElement.runtimeType.toString (), 'Method' );
25242524 });
25252525
@@ -2941,7 +2941,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans,
29412941 });
29422942
29432943 test (
2944- 'property with setter and getter and comments with asterixes do not show asterixes ' ,
2944+ 'property with setter and getter and comments with asterisks do not show asterisks ' ,
29452945 () {
29462946 expect (sFromApple.documentationAsHtml.contains ('/**' ), isFalse);
29472947 });
@@ -3882,7 +3882,7 @@ String topLevelFunction(int param1, bool param2, Cool coolBeans,
38823882 });
38833883
38843884 group ('Sorting by name' , () {
3885- // Order by uppercased lexical ordering for non-digits,
3885+ // Order by uppercase lexical ordering for non-digits,
38863886 // lexicographical ordering of embedded digit sequences.
38873887 var names = [
38883888 r'' ,
0 commit comments