Code style: Rename BinaryXML to BinaryXml
diff --git a/ndn-cpp/Interest.hpp b/ndn-cpp/Interest.hpp
index 76f3c17..97baf2b 100644
--- a/ndn-cpp/Interest.hpp
+++ b/ndn-cpp/Interest.hpp
@@ -135,7 +135,7 @@
   }
   ptr_lib::shared_ptr<std::vector<unsigned char> > encode() const 
   {
-    return encode(BinaryXMLWireFormat::instance());
+    return encode(BinaryXmlWireFormat::instance());
   }
   void decode(const unsigned char *input, unsigned int inputLength, WireFormat &wireFormat) 
   {
@@ -143,7 +143,7 @@
   }
   void decode(const unsigned char *input, unsigned int inputLength) 
   {
-    decode(input, inputLength, BinaryXMLWireFormat::instance());
+    decode(input, inputLength, BinaryXmlWireFormat::instance());
   }
   void decode(const std::vector<unsigned char> &input, WireFormat &wireFormat) 
   {