summaryrefslogtreecommitdiff
path: root/gcc/doc/gty.texi
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2008-02-17 18:52:04 +0000
committerRalf Wildenhues <rwild@gcc.gnu.org>2008-02-17 18:52:04 +0000
commit923158bee111f58152d9ce673d10656322460f5d (patch)
treeee13290ab136a405714bb15d927db8ba0cefe98e /gcc/doc/gty.texi
parent6df548d2d30d517e98adb449e5f21fed9cc05a9a (diff)
downloadgcc-923158bee111f58152d9ce673d10656322460f5d.tar.gz
c-tree.texi: Use @dots{} and @enddots{} where appropriate.
* doc/c-tree.texi: Use @dots{} and @enddots{} where appropriate. * doc/cfg.texi: Likewise. * doc/extend.texi: Likewise. * doc/gty.texi: Likewise. * doc/invoke.texi: Likewise. * doc/loop.texi: Likewise. * doc/md.texi: Likewise. * doc/passes.texi: Likewise. * doc/rtl.texi: Likewise. * doc/sourcebuild.texi: Likewise. * doc/tm.texi: Likewise. * doc/tree-ssa.texi: Likewise. From-SVN: r132381
Diffstat (limited to 'gcc/doc/gty.texi')
-rw-r--r--gcc/doc/gty.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/gty.texi b/gcc/doc/gty.texi
index 385846586d5..2ffa1519429 100644
--- a/gcc/doc/gty.texi
+++ b/gcc/doc/gty.texi
@@ -96,14 +96,14 @@ The structure that immediately contains the current structure.
@item %0
The outermost structure that contains the current structure.
@item %a
-A partial expression of the form @code{[i1][i2]...} that indexes
+A partial expression of the form @code{[i1][i2]@dots{}} that indexes
the array item currently being marked.
@end table
For instance, suppose that you have a structure of the form
@smallexample
struct A @{
- ...
+ @dots{}
@};
struct B @{
struct A foo[12];