Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / ProtocolClientSocketHandle.cti
index dc6b543..e9db8da 100644 (file)
@@ -33,7 +33,7 @@
 #include <senf/Utils/senfassert.hh>
 
 #define prefix_ inline
-///////////////////////////////cti.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 template <class SocketProtocol>
 prefix_ senf::ProtocolClientSocketHandle<SocketProtocol>::
@@ -63,7 +63,7 @@ prefix_ SocketProtocol &
 senf::ProtocolClientSocketHandle<SocketProtocol>::protocol()
 {
     SENF_ASSERT( dynamic_cast<SocketProtocol *>(&this->body().protocol()),
-                 "Internal failure: Incompatible protocol class fount it's way into this handle");
+                 "Internal failure: Incompatible protocol class found it's way into this handle");
     // Need dynamic_cast here, since senf::SocketProtocol is a
     // virtual base
     return dynamic_cast<SocketProtocol &>(this->body().protocol());
@@ -109,7 +109,7 @@ senf::ProtocolClientSocketHandle<SocketProtocol>::dumpState(unsigned lod)
     return detail::dumpState(map);
 }
 
-///////////////////////////////cti.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f