https://github.com/git/git
Revision 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC, committed by Junio C Hamano on 18 November 2013, 21:38:43 UTC
Various fixes:

 - fix typos (e.g. "show" -> "shown")
 - use "regular expression(s)" instead of "regexp" where appropriate
 - reword some sentences for easier reading
 - fix/improve some grammatical issues (e.g. comma usage)
 - add missing articles (e.g. "the")
 - change "E-mail" to "email"

Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4528aa1
Raw File
Tip revision: 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC
Documentation/rev-list-options.txt: fix some grammatical issues and typos
Tip revision: 19d6eb4
decorate.h
#ifndef DECORATE_H
#define DECORATE_H

struct object_decoration {
	const struct object *base;
	void *decoration;
};

struct decoration {
	const char *name;
	unsigned int size, nr;
	struct object_decoration *hash;
};

extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);
extern void *lookup_decoration(struct decoration *n, const struct object *obj);

#endif
back to top