This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new d154e3c6eb NIFI-14741 Corrected RecordReader interface name in JavaDoc
comment (#10083)
d154e3c6eb is described below
commit d154e3c6eb16ca97bf1574ef4651f6134c9cda7e
Author: dan-s1 <[email protected]>
AuthorDate: Fri Jul 11 13:30:31 2025 -0400
NIFI-14741 Corrected RecordReader interface name in JavaDoc comment (#10083)
Signed-off-by: David Handermann <[email protected]>
---
.../src/main/java/org/apache/nifi/serialization/RecordReader.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/RecordReader.java
b/nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/RecordReader.java
index 5412c73d23..116c67f81a 100644
---
a/nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/RecordReader.java
+++
b/nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/RecordReader.java
@@ -26,7 +26,7 @@ import java.io.IOException;
/**
* <p>
- * A RowRecordReader is responsible for parsing data and returning a record at
a time
+ * A RecordReader is responsible for parsing data and returning a record at a
time
* in order to allow the caller to iterate over the records individually.
* </p>
*