diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-24 13:31:09 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-24 13:31:09 +0000 |
commit | ca571fc1bfa87da2d6b4b8b2d01c90991e14e106 (patch) | |
tree | ae45067322a632d36c66e28f5b92c691741c420a /include | |
parent | b06d9c4ad43875f3f6dae178b32b6c1c91e6eb2f (diff) |
fix typo
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10995 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/caller.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/caller.h b/include/caller.h index a7e0968f4..8cf73e1c3 100644 --- a/include/caller.h +++ b/include/caller.h @@ -32,7 +32,7 @@ * * These functor templates work this way so that you can simply and easily allow * for these class methods to be overridden from within a module, e.g. have a module - * which completely replaces the code f r IsNick, etc. For example, with the example + * which completely replaces the code for IsNick, etc. For example, with the example * above: * * MyNewFunction replaceme(ServerInstance); @@ -280,4 +280,3 @@ template <typename ReturnType, typename Param1, typename Param2, typename Param3 class CoreExport NAME : public HandlerBase8<RETURN, V1, V2, V3, V4, V5, V6, V7, V8> { InspIRCd* Server; public: NAME(InspIRCd* Srv) : Server(Srv) { } virtual ~NAME() { } virtual RETURN Call(V1, V2, V3, V4, V5, V6, V7, V8); } #endif - |