From 21afb979a7579457793ee4313856845a2647517f Mon Sep 17 00:00:00 2001 From: Fredrik Enestad Date: Fri, 1 Apr 2022 15:44:52 +0200 Subject: [PATCH] Fix link in docs Currently the link from [here](https://docs.rs/onnxruntime/latest/onnxruntime/index.html) goes to https://docs.rs/onnxruntime/latest/onnxruntime/tensor/struct.OrtOwnedTensor.html which is dead, should go to https://docs.rs/onnxruntime/latest/onnxruntime/tensor/ort_owned_tensor/struct.OrtOwnedTensor.html --- onnxruntime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/src/lib.rs b/onnxruntime/src/lib.rs index 6b29310a..7ad71db4 100644 --- a/onnxruntime/src/lib.rs +++ b/onnxruntime/src/lib.rs @@ -109,7 +109,7 @@ to download. //! # } //! ``` //! -//! The outputs are of type [`OrtOwnedTensor`](tensor/struct.OrtOwnedTensor.html)s inside a vector, +//! The outputs are of type [`OrtOwnedTensor`](tensor/ort_owned_tensor/struct.OrtOwnedTensor.html)s inside a vector, //! with the same length as the inputs. //! //! See the [`sample.rs`](https://github.com/nbigaouette/onnxruntime-rs/blob/master/onnxruntime/examples/sample.rs)