Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarfovich committed Jul 31, 2024
1 parent 395e0bd commit db6a0aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HW4/include/print_ip.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <vector>
#include <climits>

/// @brief Function print_ip prints a single value.
/// @fn Function print_ip prints a single value.
///
/// This is an overloaded function that prints value of integral types.
/// @param v Integer value to print.
Expand All @@ -24,7 +24,7 @@ void print_ip(const T& v)
}
}

/// @brief Function print_ip prints a single value.
/// @fn Function print_ip prints a single value.
///
/// This is an overloaded function that prints value of std::string.
/// @param str String to print.
Expand All @@ -34,7 +34,7 @@ void print_ip(const T& str)
std::cout << str;
}

/// @brief Function print_ip prints a single value.
/// @fn Function print_ip prints a single value.
///
/// This is an overloaded function that prints value stored in container that supports one-directional const iterator
/// (for example, std::list and std::vector).
Expand Down

0 comments on commit db6a0aa

Please sign in to comment.