Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typos in ColumnConfig.java documentation #2171

Merged
merged 1 commit into from
Nov 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public Boolean getValueBoolean() {

/**
* Set the valueBoolean based on a given string.
* If the passed value cannot be parsed as a date, it is assumed to be a function that returns a boolean.
* If the passed value cannot be parsed as a boolean, it is assumed to be a function that returns a boolean.
* If the string "null" or an empty string is passed, it will set a null value.
* If "1" is passed, defaultValueBoolean is set to true. If 0 is passed, defaultValueBoolean is set to false
*/
Expand Down Expand Up @@ -584,7 +584,7 @@ public Boolean getDefaultValueBoolean() {

/**
* Set the defaultValueBoolean based on a given string.
* If the passed value cannot be parsed as a date, it is assumed to be a function that returns a boolean.
* If the passed value cannot be parsed as a boolean, it is assumed to be a function that returns a boolean.
* If the string "null" or an empty string is passed, it will set a null value.
* If "1" is passed, defaultValueBoolean is set to true. If 0 is passed, defaultValueBoolean is set to false
*/
Expand Down