From 8478448146a4e23f70d58809d6a4f62a44a7edbf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 13 Aug 2023 13:41:42 +0300 Subject: fix(tvix/eval): fix a comment position in value::json Change-Id: Ic58653254b36694f1991a18db9ceea0d532c2e31 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9068 Autosubmit: tazjin Tested-by: BuildkiteCI Reviewed-by: flokli --- tvix/eval/src/value/json.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tvix/eval/src/value/json.rs b/tvix/eval/src/value/json.rs index 1e73278fa013..aa5ebe32f4d0 100644 --- a/tvix/eval/src/value/json.rs +++ b/tvix/eval/src/value/json.rs @@ -8,8 +8,8 @@ use crate::generators::{self, GenCo}; use crate::ErrorKind; use serde_json::value::to_value; -use serde_json::Value as Json; -use serde_json::{Map, Number}; // name clash with *our* `Value` +use serde_json::Value as Json; // name clash with *our* `Value` +use serde_json::{Map, Number}; impl Value { pub(crate) async fn to_json(self, co: &GenCo) -> Result { -- cgit 1.4.1