Fix spelling in documentation for juniper::Object (#960)

This commit is contained in:
tyranron 2021-07-19 14:07:58 +03:00
parent 7597523720
commit 5fbd751de2
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0

View file

@ -3,7 +3,7 @@ use std::{iter::FromIterator, mem};
use super::Value;
use indexmap::map::{IndexMap, IntoIter};
/// A Object value
/// An Object value
#[derive(Debug, Clone, PartialEq)]
pub struct Object<S> {
key_value_list: IndexMap<String, Value<S>>,