kevincox added inline comments.
kevincox accepted this revision.

INLINE COMMENTS

> hg_path.rs:175
> +    pub fn push(&mut self, byte: u8) {
> +        self.inner.push(byte);
> +    }

debug_assert check after the mutation.

> hg_path.rs:242
> +    fn extend<T: IntoIterator<Item = u8>>(&mut self, iter: T) {
> +        self.inner.extend(iter);
> +    }

debug_assert check after the mutation.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6773/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6773

To: Alphare, #hg-reviewers, kevincox
Cc: mjpieters, yuja, durin42, kevincox, mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to