Submitter | Javi Merino |
---|---|
Date | May 27, 2016, 7:29 p.m. |
Message ID | <9858b77e90c46952d612.1464377392@tesla> |
Download | mbox | patch |
Permalink | /patch/15225/ |
State | Accepted |
Headers | show |
Comments
Javi Merino <merino.jav@gmail.com> writes: > # HG changeset patch > # User Javi Merino <merino.jav@gmail.com> > # Date 1464377045 -7200 > # Fri May 27 21:24:05 2016 +0200 > # Branch stable > # Node ID 9858b77e90c46952d612472c287f34e4e3c8a74d > # Parent 52a737ca711661c5dea27d7d3014d5f808cd2fc1 > lazymanifest: fix typo s/typles/tuples/ Sure, looks good to me.
On Fri, May 27, 2016 at 09:29:52PM +0200, Javi Merino wrote: > # HG changeset patch > # User Javi Merino <merino.jav@gmail.com> > # Date 1464377045 -7200 > # Fri May 27 21:24:05 2016 +0200 > # Branch stable > # Node ID 9858b77e90c46952d612472c287f34e4e3c8a74d > # Parent 52a737ca711661c5dea27d7d3014d5f808cd2fc1 > lazymanifest: fix typo s/typles/tuples/ Sure, queued. > > diff --git a/mercurial/manifest.c b/mercurial/manifest.c > --- a/mercurial/manifest.c > +++ b/mercurial/manifest.c > @@ -861,7 +861,7 @@ static PyMethodDef lazymanifest_methods[ > {"iterkeys", (PyCFunction)lazymanifest_getkeysiter, METH_NOARGS, > "Iterate over file names in this lazymanifest."}, > {"iterentries", (PyCFunction)lazymanifest_getentriesiter, METH_NOARGS, > - "Iterate over (path, nodeid, flags) typles in this lazymanifest."}, > + "Iterate over (path, nodeid, flags) tuples in this lazymanifest."}, > {"copy", (PyCFunction)lazymanifest_copy, METH_NOARGS, > "Make a copy of this lazymanifest."}, > {"filtercopy", (PyCFunction)lazymanifest_filtercopy, METH_O, > _______________________________________________ > Mercurial-devel mailing list > Mercurial-devel@mercurial-scm.org > https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel
Patch
diff --git a/mercurial/manifest.c b/mercurial/manifest.c --- a/mercurial/manifest.c +++ b/mercurial/manifest.c @@ -861,7 +861,7 @@ static PyMethodDef lazymanifest_methods[ {"iterkeys", (PyCFunction)lazymanifest_getkeysiter, METH_NOARGS, "Iterate over file names in this lazymanifest."}, {"iterentries", (PyCFunction)lazymanifest_getentriesiter, METH_NOARGS, - "Iterate over (path, nodeid, flags) typles in this lazymanifest."}, + "Iterate over (path, nodeid, flags) tuples in this lazymanifest."}, {"copy", (PyCFunction)lazymanifest_copy, METH_NOARGS, "Make a copy of this lazymanifest."}, {"filtercopy", (PyCFunction)lazymanifest_filtercopy, METH_O,