doc: Remove latex to doxygen conversion leftovers in talloc.
authorPavel Březina <pbrezina@redhat.com>
Mon, 7 May 2012 10:30:44 +0000 (12:30 +0200)
committerAndreas Schneider <asn@samba.org>
Mon, 7 May 2012 17:20:30 +0000 (19:20 +0200)
Signed-off-by: Andreas Schneider <asn@samba.org>
lib/talloc/doc/tutorial_context.dox
lib/talloc/doc/tutorial_dts.dox

index 593c15c83f76944c35af3f5b96c3fa0cb6142fa0..b8bfe2696151381794e2bc55a224f6ae5252bccf 100644 (file)
@@ -164,11 +164,11 @@ struct user *user_zero = talloc_zero(ctx, struct user);
 The zero-length context is basically a context without any special semantical
 meaning. We can use it the same way as any other context. The only difference
 is that it consists only of the meta data about the context. Therefore, it is
-strictly of type |TALLOC_CTX*|. It is often used in cases where we want to
-aggregate several data structures under one parent (zero-length) context, such
-as a temporary context to contain memory needed within a single function that
-is not interesting to the caller. Allocating on a zero-length temporary context
-will make clean-up of the function simpler.
+strictly of type <code>TALLOC_CTX*</code>. It is often used in cases where we
+want to aggregate several data structures under one parent (zero-length)
+context, such as a temporary context to contain memory needed within a single
+function that is not interesting to the caller. Allocating on a zero-length
+temporary context will make clean-up of the function simpler.
 
 @code
 TALLOC_CTX *tmp_ctx = NULL;
index 62c425c408dc36c0df461f5afa7fc069c780b0d4..75b5172bbe8d97b2c605e50c2f1395d6596f67dc 100644 (file)
@@ -6,8 +6,8 @@
 Generic programming in the C language is very difficult. There is no inheritance
 nor templates known from object oriented languages. There is no dynamic type
 system. Therefore, generic programming in this language is usually done by
-type-casting a variable to |void*| and transferring it through a generic function
-to a specialized callback as illustrated on the next listing.
+type-casting a variable to <code>void*</code> and transferring it through
+a generic function to a specialized callback as illustrated on the next listing.
 
 @code
 void generic_function(callback_fn cb, void *pvt)
@@ -45,7 +45,7 @@ Although the name of the context can be set to any arbitrary string, the best
 way of using it to simulate the dynamic type system is to set it directly to the
 type of the variable.
 
-It is recommended to use one of |talloc()| and |talloc_array()| (or its
+It is recommended to use one of talloc() and talloc_array() (or its
 variants) to create the context as they set its name to the name of the
 given type automatically.