fix(tvix/eval): fix a comment position in value::json
Change-Id: Ic58653254b36694f1991a18db9ceea0d532c2e31 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9068 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
parent
081f6beb8d
commit
8478448146
1 changed files with 2 additions and 2 deletions
|
@ -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<Json, ErrorKind> {
|
||||
|
|
Loading…
Reference in a new issue