Browse Source

[1062] Indentation

Michal 'vorner' Vaner 13 years ago
parent
commit
914fe9bc05
1 changed files with 11 additions and 11 deletions
  1. 11 11
      src/lib/datasrc/database.h

+ 11 - 11
src/lib/datasrc/database.h

@@ -149,17 +149,17 @@ public:
     static const size_t COLUMN_COUNT = 4;
 
     /**
-        * \brief Returns a string identifying this dabase backend
-        *
-        * The returned string is mainly intended to be used for
-        * debugging/logging purposes.
-        *
-        * Any implementation is free to choose the exact string content,
-        * but it is advisable to make it a name that is distinguishable
-        * from the others.
-        *
-        * \return the name of the database
-        */
+     * \brief Returns a string identifying this dabase backend
+     *
+     * The returned string is mainly intended to be used for
+     * debugging/logging purposes.
+     *
+     * Any implementation is free to choose the exact string content,
+     * but it is advisable to make it a name that is distinguishable
+     * from the others.
+     *
+     * \return the name of the database
+     */
     virtual const std::string& getDBName() const = 0;
 };