This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 6e4d7008db docs: fix wrong inline code snippet in parquet document
(#4550)
6e4d7008db is described below
commit 6e4d7008db49e51efb3f75e1cac986ad114fe6a2
Author: SteveLauC <[email protected]>
AuthorDate: Sat Jul 22 01:38:21 2023 +0800
docs: fix wrong inline code snippet in parquet document (#4550)
---
parquet/src/file/metadata.rs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/parquet/src/file/metadata.rs b/parquet/src/file/metadata.rs
index bb8346306c..4cb2e9ab2a 100644
--- a/parquet/src/file/metadata.rs
+++ b/parquet/src/file/metadata.rs
@@ -230,7 +230,9 @@ impl FileMetaData {
self.key_value_metadata.as_ref()
}
- /// Returns Parquet ['Type`] that describes schema in this file.
+ /// Returns Parquet [`Type`] that describes schema in this file.
+ ///
+ /// [`Type`]: crate::schema::types::Type
pub fn schema(&self) -> &SchemaType {
self.schema_descr.root_schema()
}