///
/// BAD: An example of a class that lacks documentation
/// for a type parameter.
///
class Stack
{
}
///
/// BAD: An example of a class that has incorrect documentation
/// for the type parameter.
///
/// The type of each stack element.
class Stack
{
}
///
/// GOOD: An example of a class whose type parameters are
/// correctly documented.
///
/// The type of each stack element.
class Stack
{
}