* <ul>
* <li>If {@code defaultValue} is specified and user presses Enter, that default is returned.</li>
* <li>If {@code defaultValue} is {@code null} and user presses Enter, returns {@code null}.</li>
- * <li>If {@code min} is not {@code null}, we enforce that the entered float is >= min.</li>
- * <li>If {@code max} is not {@code null}, we enforce that the entered float is <= max.</li>
+ * <li>If {@code min} is not {@code null}, we enforce that the entered float is {@code >= min}.</li>
+ * <li>If {@code max} is not {@code null}, we enforce that the entered float is {@code <= max}.</li>
* </ul>
*
* @param prompt The prompt displayed to the user
* <ul>
* <li>If {@code defaultValue} is specified and user presses Enter, that default is returned.</li>
* <li>If {@code defaultValue} is {@code null} and user presses Enter, returns {@code null}.</li>
- * <li>If {@code min} is not {@code null}, we enforce that the entered long is >= min.</li>
- * <li>If {@code max} is not {@code null}, we enforce that the entered long is <= max.</li>
+ * <li>If {@code min} is not {@code null}, we enforce that the entered long is {@code >= min}.</li>
+ * <li>If {@code max} is not {@code null}, we enforce that the entered long is {@code <= max}.</li>
* </ul>
*
* @param prompt The prompt displayed to the user