Browse Source

[3151] Replaced curly braces with code and endcode in dhcp6/config_parser.cc

Thomas Markwalder 11 years ago
parent
commit
4a4a6098ba
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/bin/dhcp6/config_parser.cc

+ 3 - 1
src/bin/dhcp6/config_parser.cc

@@ -174,13 +174,15 @@ protected:
 /// PdPool defintions currently support three elements: prefix, prefix-len,
 /// and delegated-len, as shown in the example JSON text below:
 ///
-/// {{{
+/// @code
 ///
 /// {
 ///     "prefix": "2001:db8:1::",
 ///     "prefix-len": 64,
 ///     "delegated-len": 128
 /// }
+/// @endcode
+///
 class PdPoolParser : public DhcpConfigParser {
 public: