diff options
author | Jakub Dupak <dev@jakubdupak.com> | 2022-10-28 17:27:16 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2023-02-21 12:36:44 +0100 |
commit | a56faba96369cff44ec1ef0ec161c294d046951c (patch) | |
tree | 63743ac77a0110ddaf4278335d43ab8a40e6df9b | |
parent | 3b5fb3f89b0f87659d75523337dd8ce3a55f81d0 (diff) | |
download | gcc-a56faba96369cff44ec1ef0ec161c294d046951c.zip gcc-a56faba96369cff44ec1ef0ec161c294d046951c.tar.gz gcc-a56faba96369cff44ec1ef0ec161c294d046951c.tar.bz2 |
gccrs: ast: refer correctly to arguments in docs-strings
gcc/rust/ChangeLog:
* ast/rust-ast-dump.h: Fix documentation.
Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
-rw-r--r-- | gcc/rust/ast/rust-ast-dump.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/rust/ast/rust-ast-dump.h b/gcc/rust/ast/rust-ast-dump.h index 7a8058b..13c9212 100644 --- a/gcc/rust/ast/rust-ast-dump.h +++ b/gcc/rust/ast/rust-ast-dump.h @@ -81,7 +81,7 @@ private: template <typename T> void visit (std::unique_ptr<T> &node); /** - * Visit all items in given collection, placing the separator in between but + * Visit all items in given @collection, placing the separator in between but * not at the end. * Start and end offset allow to visit only a "slice" from the collection. */ @@ -99,7 +99,7 @@ private: void visit_as_line (T &item, const std::string &trailing = ""); /** - * Visit each item in a collection "as line". + * Visit each item in @collection "as line". * * @see visit_as_line */ @@ -107,7 +107,7 @@ private: void visit_items_as_lines (T &collection, const std::string &trailing = ""); /** - * Visit each item in collection as lines inside a block delimited by braces + * Visit each item in @collection as lines inside a block delimited by braces * with increased indentation. Also includes special handling for empty * collection to print only the delimiters with no new line inside. */ |