File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -557,9 +557,9 @@ where
557557
558558/// JSON values to Arrow record batch decoder.
559559///
560- /// A [Decoder] decodes arbitrary streams of [serde_json::Value]s and
561- /// converts them to [RecordBatch]es. To decode JSON formatted files,
562- /// see [Reader].
560+ /// A [` Decoder` ] decodes arbitrary streams of [` serde_json::Value` ]s and
561+ /// converts them to [` RecordBatch` ]es. To decode JSON formatted files,
562+ /// see [` Reader` ].
563563///
564564/// # Examples
565565/// ```
@@ -639,7 +639,7 @@ impl DecoderOptions {
639639
640640impl Decoder {
641641 /// Create a new JSON decoder from some value that implements an
642- /// iterator over [serde_json::Value]s (aka implements the
642+ /// iterator over [` serde_json::Value` ]s (aka implements the
643643 /// `Iterator<Item=Result<Value>>` trait).
644644 pub fn new ( schema : SchemaRef , options : DecoderOptions ) -> Self {
645645 Self { schema, options }
@@ -668,8 +668,8 @@ impl Decoder {
668668 }
669669 }
670670
671- /// Read the next batch of [serde_json::Value] records from the
672- /// interator into a [RecordBatch].
671+ /// Read the next batch of [` serde_json::Value` ] records from the
672+ /// interator into a [` RecordBatch` ].
673673 ///
674674 /// Returns `None` if the input iterator is exhausted.
675675 pub fn next_batch < I > ( & self , value_iter : & mut I ) -> Result < Option < RecordBatch > >
You can’t perform that action at this time.
0 commit comments