Skip to content

Commit

Permalink
clarifies font size description in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nbond211 authored and davelandry committed Mar 8, 2018
1 parent 4ed6435 commit 25c7282
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TextBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function(text, line) {

/**
@memberof TextBox
@desc Sets the maximum font size to the specified accessor function or static number, which is used when [dynamically resizing fonts](#textBox.fontResize).
@desc Sets the maximum font size to the specified accessor function or static number (which corresponds to pixel units), which is used when [dynamically resizing fonts](#textBox.fontResize).
@param {Function|Number} [*value* = 50]
*/
fontMax(_) {
Expand All @@ -375,7 +375,7 @@ function(text, line) {

/**
@memberof TextBox
@desc Sets the minimum font size to the specified accessor function or static number, which is used when [dynamically resizing fonts](#textBox.fontResize).
@desc Sets the minimum font size to the specified accessor function or static number (which corresponds to pixel units), which is used when [dynamically resizing fonts](#textBox.fontResize).
@param {Function|Number} [*value* = 8]
*/
fontMin(_) {
Expand All @@ -393,7 +393,7 @@ function(text, line) {

/**
@memberof TextBox
@desc Sets the font size to the specified accessor function or static number, which is inferred from the [DOM selection](#textBox.select) by default.
@desc Sets the font size to the specified accessor function or static number (which corresponds to pixel units), which is inferred from the [DOM selection](#textBox.select) by default.
@param {Function|Number} [*value* = 10]
*/
fontSize(_) {
Expand Down

0 comments on commit 25c7282

Please sign in to comment.