Skip to content

Commit

Permalink
[hotfix][docs] Fix typos in config option descriptions
Browse files Browse the repository at this point in the history
This closes apache#12191
  • Loading branch information
wangxianghu authored and StephanEwen committed May 16, 2020
1 parent 6fa85fe commit 1f1d756
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/_includes/generated/optimizer_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<td><h5>compiler.delimited-informat.max-line-samples</h5></td>
<td style="word-wrap: break-word;">10</td>
<td>Integer</td>
<td>he maximum number of line samples taken by the compiler for delimited inputs. The samples are used to estimate the number of records. This value can be overridden for a specific input with the input format’s parameters.</td>
<td>The maximum number of line samples taken by the compiler for delimited inputs. The samples are used to estimate the number of records. This value can be overridden for a specific input with the input format’s parameters.</td>
</tr>
<tr>
<td><h5>compiler.delimited-informat.max-sample-len</h5></td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<td><h5>state.backend.rocksdb.writebuffer.count</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>Integer</td>
<td>Tne maximum number of write buffers that are built up in memory. RocksDB has default configuration as '2'.</td>
<td>The maximum number of write buffers that are built up in memory. RocksDB has default configuration as '2'.</td>
</tr>
<tr>
<td><h5>state.backend.rocksdb.writebuffer.number-to-merge</h5></td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class OptimizerOptions {
public static final ConfigOption<Integer> DELIMITED_FORMAT_MAX_LINE_SAMPLES =
key("compiler.delimited-informat.max-line-samples")
.defaultValue(10)
.withDescription("he maximum number of line samples taken by the compiler for delimited inputs. The samples" +
.withDescription("The maximum number of line samples taken by the compiler for delimited inputs. The samples" +
" are used to estimate the number of records. This value can be overridden for a specific input with the" +
" input format’s parameters.");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class RocksDBConfigurableOptions implements Serializable {
key("state.backend.rocksdb.writebuffer.count")
.intType()
.noDefaultValue()
.withDescription("Tne maximum number of write buffers that are built up in memory. " +
.withDescription("The maximum number of write buffers that are built up in memory. " +
"RocksDB has default configuration as '2'.");

public static final ConfigOption<Integer> MIN_WRITE_BUFFER_NUMBER_TO_MERGE =
Expand Down

0 comments on commit 1f1d756

Please sign in to comment.