]> git.ozlabs.org Git - ccan/blobdiff - ccan/tcon/tcon.h
tcon: update and enhance documentation.
[ccan] / ccan / tcon / tcon.h
index 0f6981d97917009dc816519e1485daaee0d61a59..866c2111e9c942f34c7f51f255f6ab2e3b552cca 100644 (file)
@@ -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.