[DOCS] Fix a typo in Encoder.clsTag

## What changes were proposed in this pull request?

Fixes a typo: `and` -> `an`

## How was this patch tested?

Not at all.

Author: Wieland Hoffmann <mineo@users.noreply.github.com>

Closes #17759 from mineo/patch-1.
This commit is contained in:
Wieland Hoffmann 2017-06-03 10:12:37 +01:00 committed by Sean Owen
parent 887cf0ec33
commit c70c38eb93

View file

@ -78,7 +78,7 @@ trait Encoder[T] extends Serializable {
def schema: StructType
/**
* A ClassTag that can be used to construct and Array to contain a collection of `T`.
* A ClassTag that can be used to construct an Array to contain a collection of `T`.
*/
def clsTag: ClassTag[T]
}