Skip to content

Commit 7e1f81b

Browse files
author
quran
committed
replace int to float in comment
1 parent 4d19a64 commit 7e1f81b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,7 @@ void foo(T t, typename U::type u) {
21062106
}
21072107
21082108
void callFoo() {
2109-
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == int
2109+
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == float
21102110
}
21112111
```
21122112
@@ -2127,7 +2127,7 @@ void foo(T t, typename U::type u) {
21272127
}
21282128
21292129
void callFoo() {
2130-
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == int
2130+
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == float
21312131
foo<int, Y>(5, 5.0); // ???
21322132
}
21332133
```
@@ -2165,7 +2165,7 @@ void foo(T t, typename U::type2 u) {
21652165
// ...
21662166
}
21672167
void callFoo() {
2168-
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == int
2168+
foo<int, X>(5, 5.0); // T == int, typename U::type == X::type == float
21692169
foo<int, Y>( 1, 1.0 ); // ???
21702170
}
21712171
```

0 commit comments

Comments
 (0)