summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-29 09:26:01 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-29 09:26:01 +0100
commit265312a5be98d59e9758cc78c0f313920fa40016 (patch)
tree23963c2407fa25d8addfcdb1d31b087a35c8b60d /doc
parentfstests/fsdosfsname01: Fix Makefile.am (diff)
downloadrtems-265312a5be98d59e9758cc78c0f313920fa40016.tar.bz2
doc: Fix typo
Diffstat (limited to 'doc')
-rw-r--r--doc/user/concepts.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/concepts.t b/doc/user/concepts.t
index eac6960957..183d3225ae 100644
--- a/doc/user/concepts.t
+++ b/doc/user/concepts.t
@@ -43,7 +43,7 @@ the executive.
@subsection Object Names
@cindex object name
-@findex rtems_object_name
+@findex rtems_name
An object name is an unsigned thirty-two bit entity
associated with the object by the user. The data type
@@ -60,7 +60,7 @@ The following example illustrates this:
@ifset is-C
@example
-rtems_object_name my_name;
+rtems_name my_name;
my_name = rtems_build_name( 'L', 'I', 'T', 'E' );
@end example