Skip to content

Commit 3fc31d8

Browse files
committed
update doc
1 parent 67847e5 commit 3fc31d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LocalRelation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object LocalRelation {
4646
/**
4747
* @param dataFromStreaming indicate if this relation comes from a streaming source.
4848
* In a streaming query, stream relation will be cut into a
49-
* couple of batch relations.
49+
* series of batch relations.
5050
*/
5151
case class LocalRelation(
5252
output: Seq[Attribute],

sql/core/src/main/scala/org/apache/spark/sql/execution/ExistingRDD.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ case class ExternalRDDScanExec[T](
131131
*
132132
* @param dataFromStreaming indicate if this relation comes from a streaming source.
133133
* In a streaming query, stream relation will be cut into a
134-
* couple of batch relations.
134+
* series of batch relations.
135135
*/
136136
case class LogicalRDD(
137137
output: Seq[Attribute],

sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/LogicalRelation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import org.apache.spark.util.Utils
3333
*
3434
* @param dataFromStreaming indicate if this relation comes from a streaming source.
3535
* In a streaming query, stream relation will be cut into a
36-
* couple of batch relations.
36+
* series of batch relations.
3737
*/
3838
case class LogicalRelation(
3939
relation: BaseRelation,

sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/Source.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ trait Source {
6060
def getBatch(start: Option[Offset], end: Offset): DataFrame
6161

6262
/**
63-
* In a streaming query, stream relation will be cut into a couple of batch relations.
63+
* In a streaming query, stream relation will be cut into a series of batch relations.
6464
* We need to mark the batch relation as streaming, i.e. data coming from a stream source,
6565
* so we can apply those streaming strategies to it.
6666
*/

0 commit comments

Comments
 (0)