Update src/libserialize/json.rs

Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
Tshepang Lekhonkhobe 2020-05-02 08:51:54 +02:00 committed by GitHub
parent ad460446c9
commit 3406b53bac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1428,7 +1428,7 @@ pub struct Stack {
///
/// As an example, `StackElement::Key("foo")`, `StackElement::Key("bar")`,
/// `StackElement::Index(3)`, and `StackElement::Key("x")` are the
/// StackElements compositing the stack that represents `foo.bar[3].x`.
/// StackElements composing the stack that represents `foo.bar[3].x`.
#[derive(PartialEq, Clone, Debug)]
pub enum StackElement<'l> {
Index(u32),