wuye9036 hace 8 años
padre
commit
45c001f8a3
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      ReadMe.md

+ 2 - 2
ReadMe.md

@@ -1469,8 +1469,8 @@ template <typename T> struct Y
 };
 
 void poo(){
-    X<int>::foo();
-    X<float>::foo();
+    Y<int>::foo();
+    Y<float>::foo();
 }
 ```