Fix a typo in a variable name

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79558 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Parse/ParseTemplate.cpp b/lib/Parse/ParseTemplate.cpp
index dd745d6..23b32d2 100644
--- a/lib/Parse/ParseTemplate.cpp
+++ b/lib/Parse/ParseTemplate.cpp
@@ -75,7 +75,7 @@
   // defining A<T>::B receives just the inner template parameter list
   // (and retrieves the outer template parameter list from its
   // context).
-  bool isSpecialiation = true;
+  bool isSpecialization = true;
   TemplateParameterLists ParamLists;
   do {
     // Consume the 'export', if any.
@@ -106,7 +106,7 @@
     }
       
     if (!TemplateParams.empty())
-      isSpecialiation = false;
+      isSpecialization = false;
 
     ParamLists.push_back(
       Actions.ActOnTemplateParameterList(ParamLists.size(), ExportLoc, 
@@ -118,7 +118,7 @@
   // Parse the actual template declaration.
   return ParseSingleDeclarationAfterTemplate(Context, 
                                              ParsedTemplateInfo(&ParamLists,
-                                                             isSpecialiation),
+                                                             isSpecialization),
                                              DeclEnd, AS);
 }