From 6101267f8ef503da1b7231531da2d9c63486ca3e Mon Sep 17 00:00:00 2001 From: tfx-bsl-team Date: Wed, 20 Sep 2023 13:43:03 -0700 Subject: [PATCH] Fix spelling typo in class comments for RecordBasedTFXIO. PiperOrigin-RevId: 567067647 --- tfx_bsl/tfxio/record_based_tfxio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfx_bsl/tfxio/record_based_tfxio.py b/tfx_bsl/tfxio/record_based_tfxio.py index dfa2029..0d08cc4 100644 --- a/tfx_bsl/tfxio/record_based_tfxio.py +++ b/tfx_bsl/tfxio/record_based_tfxio.py @@ -46,7 +46,7 @@ class RecordBasedTFXIO(tfxio.TFXIO): `RawRecordBeamSource()`: returns a PTransform that produces PCollection[bytes] (of raw records). - RawRecordToReocrdBatch(): returns a PTransform that takes `PCollection[bytes]` + RawRecordToRecordBatch(): returns a PTransform that takes `PCollection[bytes]` (expected to be what's produced by `RawRecordBeamSource()`) and produces `PCollection[RecordBatch]`. It's guaranteed that `BeamSource()` is a composition of `RawRecordBeamSource()` and `RawRecordToRecordBatch()`.