X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftcon%2Ftcon.h;fp=ccan%2Ftcon%2Ftcon.h;h=866c2111e9c942f34c7f51f255f6ab2e3b552cca;hp=0f6981d97917009dc816519e1485daaee0d61a59;hb=cafea330f28cd9fc5588ea547889770ca009185a;hpb=5c559e7df1d31b4c0ddf26451fac972dc8a0c2c9 diff --git a/ccan/tcon/tcon.h b/ccan/tcon/tcon.h index 0f6981d9..866c2111 100644 --- a/ccan/tcon/tcon.h +++ b/ccan/tcon/tcon.h @@ -9,11 +9,11 @@ * * This declares a _tcon member for a structure. It should be the * last element in your structure; with sufficient compiler support it - * will not use any actual storage. tcon_to_raw() will compare + * will not use any actual storage. tcon_check() will compare * expressions with one of these "type canaries" to cause warnings if * the container is misused. * - * A type of "void *" will allow tcon_to_raw() to pass on any (pointer) type. + * A type of "void *" will allow tcon_check() to pass on any (pointer) type. * * Example: * // Simply typesafe linked list.