Skip to content

Commit

Permalink
[hotfix][docs][javadocs] Remove double "of"
Browse files Browse the repository at this point in the history
This closes apache#4999.
  • Loading branch information
yew1eb authored and zentol committed Nov 14, 2017
1 parent 16107cf commit 49c8686
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/ops/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ The following parameters configure Flink's JobManager and TaskManagers.

- `taskmanager.exit-on-fatal-akka-error`: Whether the TaskManager shall be terminated in case of a fatal Akka error (quarantining event). (DEFAULT: **false**)

- `jobmanager.tdd.offload.minsize`: Maximum size of of the `TaskDeploymentDescriptor`'s serialized task and job information to still transmit them via RPC. Larger blobs may be offloaded to the BLOB server. (DEFAULT: **1 KiB**).
- `jobmanager.tdd.offload.minsize`: Maximum size of the `TaskDeploymentDescriptor`'s serialized task and job information to still transmit them via RPC. Larger blobs may be offloaded to the BLOB server. (DEFAULT: **1 KiB**).

### Distributed Coordination (via Akka)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public final class ConfigConstants {
* The maximum number of failed YARN containers before entirely stopping
* the YARN session / job on YARN.
*
* By default, we take the number of of initially requested containers.
* By default, we take the number of initially requested containers.
* @deprecated in favor of {@code YarnConfigOptions#MAX_FAILED_CONTAINERS}.
*/
@Deprecated
Expand Down Expand Up @@ -523,7 +523,7 @@ public final class ConfigConstants {
* The maximum number of failed Mesos tasks before entirely stopping
* the Mesos session / job on Mesos.
*
* By default, we take the number of of initially requested tasks.
* By default, we take the number of initially requested tasks.
* @deprecated in favor of {@code MesosOptions#MAX_FAILED_TASKS}.
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class RowSchema(private val logicalRowType: RelDataType) {
def relDataType: RelDataType = logicalRowType

/**
* Returns the [[TypeInformation]] of of the schema
* Returns the [[TypeInformation]] of the schema
*/
def typeInfo: TypeInformation[Row] = physicalRowTypeInfo

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public static void substituteDeprecatedConfigKey(Configuration config, String de
}

/**
* Sets the value of of a new config key to the value of a deprecated config key. Taking into
* Sets the value of a new config key to the value of a deprecated config key. Taking into
* account the changed prefix.
* @param config Config to write
* @param deprecatedPrefix Old prefix of key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* the {@link SimpleSlot}s.</p>
*
* <p>An exception are the co-location-constraints, that define that the i-th subtask of one
* vertex needs to be scheduled strictly together with the i-th subtasks of of the vertices
* vertex needs to be scheduled strictly together with the i-th subtasks of the vertices
* that share the co-location-constraint. To manage that, a co-location-constraint gets its
* own shared slot inside the shared slots of a sharing group.</p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public void initChannel(SocketChannel channel) throws Exception {
{
throw new ChannelException(
"The operating system does not offer enough file handles to open the network connection. " +
"Please increase the number of of available file handles.", e.getCause());
"Please increase the number of available file handles.", e.getCause());
}
else {
throw e;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class YarnConfigOptions {
/**
* The maximum number of failed YARN containers before entirely stopping
* the YARN session / job on YARN.
* By default, we take the number of of initially requested containers.
* By default, we take the number of initially requested containers.
*
* <p>Note: This option returns a String since Integer options must have a static default value.
*/
Expand Down

0 comments on commit 49c8686

Please sign in to comment.