Mercurial > public > mercurial-scm > hg
comparison mercurial/changelog.py @ 17424:e7cfe3587ea4
fix trivial spelling errors
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Wed, 15 Aug 2012 22:38:42 +0200 |
parents | 62c56c94c77e |
children | 5c89e7fa5bc2 |
comparison
equal
deleted
inserted
replaced
17406:fc14953e8e34 | 17424:e7cfe3587ea4 |
---|---|
181 """ | 181 """ |
182 format used: | 182 format used: |
183 nodeid\n : manifest node in ascii | 183 nodeid\n : manifest node in ascii |
184 user\n : user, no \n or \r allowed | 184 user\n : user, no \n or \r allowed |
185 time tz extra\n : date (time is int or float, timezone is int) | 185 time tz extra\n : date (time is int or float, timezone is int) |
186 : extra is metadatas, encoded and separated by '\0' | 186 : extra is metadata, encoded and separated by '\0' |
187 : older versions ignore it | 187 : older versions ignore it |
188 files\n\n : files modified by the cset, no \n or \r allowed | 188 files\n\n : files modified by the cset, no \n or \r allowed |
189 (.*) : comment (free text, ideally utf-8) | 189 (.*) : comment (free text, ideally utf-8) |
190 | 190 |
191 changelog v0 doesn't use extra | 191 changelog v0 doesn't use extra |