summaryrefslogtreecommitdiff
path: root/lib/talloc/doc/tutorial_context.dox
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2012-05-07 12:30:44 +0200
committerAndreas Schneider <asn@samba.org>2012-05-07 19:20:30 +0200
commit20408286e2845ebca64b28e7e8ec0ed8dc9130c2 (patch)
tree04ef693ba61028739decfdecec1096e3640dd6ae /lib/talloc/doc/tutorial_context.dox
parent69526997e5636211824f8c041a9e57d039cc62f4 (diff)
downloadsamba-20408286e2845ebca64b28e7e8ec0ed8dc9130c2.tar.gz
samba-20408286e2845ebca64b28e7e8ec0ed8dc9130c2.tar.bz2
samba-20408286e2845ebca64b28e7e8ec0ed8dc9130c2.zip
doc: Remove latex to doxygen conversion leftovers in talloc.
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'lib/talloc/doc/tutorial_context.dox')
-rw-r--r--lib/talloc/doc/tutorial_context.dox10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/talloc/doc/tutorial_context.dox b/lib/talloc/doc/tutorial_context.dox
index 593c15c83f..b8bfe26961 100644
--- a/lib/talloc/doc/tutorial_context.dox
+++ b/lib/talloc/doc/tutorial_context.dox
@@ -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;