From 79c629e0fa2bf0f977f63fd7ca702e40f3bfbc16 Mon Sep 17 00:00:00 2001 From: "Ehsan M. Kermani" Date: Wed, 3 Apr 2019 16:23:27 -0700 Subject: [PATCH] [RUST] Remove empty ty.rs (#2958) --- rust/common/src/ty.rs | 0 rust/runtime/src/graph.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 rust/common/src/ty.rs diff --git a/rust/common/src/ty.rs b/rust/common/src/ty.rs deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/rust/runtime/src/graph.rs b/rust/runtime/src/graph.rs index 6e00d9c7a14c..eeb819c61289 100644 --- a/rust/runtime/src/graph.rs +++ b/rust/runtime/src/graph.rs @@ -22,7 +22,7 @@ const _NDARRAY_LIST_MAGIC: u64 = 0xF7E58D4F05049CB7; /// # Examples /// /// ``` -/// let graph_json = fs::read_to_string("graph.json")).unwrap(); +/// let graph_json = fs::read_to_string("graph.json").unwrap(); /// let graph = Graph::try_from(&graph_json).unwrap(); /// ``` #[derive(Serialize, Deserialize, Debug)]