build+docs: Add doxygen generation target

This commit also fixes few documentation errors

Change-Id: Ie34eaf167b7e423c82c1e453fbd0bbf2ac2c805c
diff --git a/src/repetitive-interval.hpp b/src/repetitive-interval.hpp
index 1e8127f..6ac5e68 100644
--- a/src/repetitive-interval.hpp
+++ b/src/repetitive-interval.hpp
@@ -72,10 +72,10 @@
   /**
    * @brief Get get an interval that @p tp falls in
    *
-   * @parameter tp A timestamp
+   * @param tp A timestamp
    *
    * @return bool If the repetitive interval covers the @p tp, return true, otherwise false
-   * @return Interval Return the interval which @tp falls in
+   * @return Interval Return the interval which @p tp falls in
    */
   std::tuple<bool, Interval>
   getInterval(const TimeStamp& tp) const;
@@ -83,7 +83,7 @@
   /**
    * @brief To store in std::set, class have to implement operator <
    *
-   * @parameter interval Interval which will be compared with
+   * @param interval Interval which will be compared with
    */
   bool
   operator<(const RepetitiveInterval& interval) const;