# HG changeset patch # User Aay Jay Chan # Date 2020-01-15 16:30:08 # Node ID b3ec1ea95ee6112b155812a081706c3169569036 # Parent dc9b5348268990152727b1de5f8d4596094135a7 rust-core: fix typo in comment Differential Revision: https://phab.mercurial-scm.org/D7895 diff --git a/rust/hg-core/src/revlog.rs b/rust/hg-core/src/revlog.rs --- a/rust/hg-core/src/revlog.rs +++ b/rust/hg-core/src/revlog.rs @@ -14,7 +14,7 @@ pub type Revision = i32; /// Marker expressing the absence of a parent /// /// Independently of the actual representation, `NULL_REVISION` is guaranteed -/// to be smaller that all existing revisions. +/// to be smaller than all existing revisions. pub const NULL_REVISION: Revision = -1; /// Same as `mercurial.node.wdirrev`