wuye9036 8 years ago
parent
commit
45c001f8a3
1 changed files with 2 additions and 2 deletions
  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();
 }
 ```