Have the following code
/**
* A person
* @constructor
* @param {string} name - The name of the person.
* @param {number} age - The age of the person.
*/
function Person(name, age) {
this.name = name;
this.age = age;
}
Hover over age. The information message starts with a dot and is not centered and not aligned nicely. I would expect the hover space to be used in a better way.
