update export analyser for dBTP
[ardour.git] / libs / audiographer / audiographer / sink.h
index e4248e8c33be80f605cd0d5d2cf84c3ed9123229..da9e7350eed125c6fd470c2f455291edb473d8f4 100644 (file)
@@ -17,17 +17,17 @@ template <typename T>
 class /*LIBAUDIOGRAPHER_API*/ Sink  {
   public:
        virtual ~Sink () {}
-       
+
        /** Process given data.
          * The data can not be modified, so in-place processing is not allowed.
          * At least this function must be implemented by deriving classes
          */
        virtual void process (ProcessContext<T> const & context) = 0;
-       
+
        /** Process given data
          * Data may be modified, so in place processing is allowed.
          * The default implementation calls the non-modifying version,
-         * so this function does not need to be overriden.
+         * so this function does not need to be overridden.
          * However, if the sink can do in-place processing,
          * overriding this is highly recommended.
          *