Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Nov 27, 2024
1 parent 8a234de commit 1203145
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ main() {
E e2 = .staticMethod();
Expect.equals("v2", e2.value);

E e3 = E.values[1];
E e3 = .values[1];
Expect.equals(E.v2, e3);
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ main() {
CInt c4 = .id2<int>(4);
Expect.equals(4, c4.t);

M<int> m1 = M.id1;
M<int> m1 = .id1;
Expect.equals(1, m1.t);

M<String> m2 = .id2("m2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ main() {
CInt c4 = .id2<int>(4);
Expect.equals(4, c4.t);

M<int> m1 = M.id1;
M<int> m1 = .id1;
Expect.equals(1, m1.t);

M<String> m2 = .id2("m2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ main() {
p.CInt c4 = .id2<int>(4);
Expect.equals(4, c4.t);

p.M<int> m1 = M.id1;
p.M<int> m1 = .id1;
Expect.equals(1, m1.t);

p.M<String> m2 = .id2("m2");
Expand Down

0 comments on commit 1203145

Please sign in to comment.