From 48881ad1e05fffea39091b5d38917c880e8abd4c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 May 2014 15:00:47 +1000 Subject: Code cleanup: doxy comments --- source/blender/blenlib/intern/BLI_ghash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/BLI_ghash.c') diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c index 7b48744bcdf..e55f20e99eb 100644 --- a/source/blender/blenlib/intern/BLI_ghash.c +++ b/source/blender/blenlib/intern/BLI_ghash.c @@ -742,7 +742,7 @@ int BLI_ghashutil_intcmp(const void *a, const void *b) * This function implements the widely used "djb" hash apparently posted * by Daniel Bernstein to comp.lang.c some time ago. The 32 bit * unsigned hash value starts at 5381 and for each byte 'c' in the - * string, is updated: hash = hash * 33 + c. This + * string, is updated: ``hash = hash * 33 + c``. This * function uses the signed value of each byte. * * note: this is the same hash method that glib 2.34.0 uses. -- cgit v1.2.3