From 0c7bc596992f313986c61744a59d352743fe49b7 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 31 Oct 2024 18:03:51 +0000 Subject: [PATCH] Restyled by clang-format --- src/app/AttributePathExpandIterator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/AttributePathExpandIterator.h b/src/app/AttributePathExpandIterator.h index 70d97cb5bf7ea4..351520f7c49c99 100644 --- a/src/app/AttributePathExpandIterator.h +++ b/src/app/AttributePathExpandIterator.h @@ -37,8 +37,8 @@ namespace app { * ConcreteAttributePath path; * for (AttributePathExpandIterator iterator(AttributePathParams); iterator.Get(path); iterator.Next()) {...} * - * The iterator does not copy the given AttributePathParams. The given AttributePathParams must remain valid when using the iterator. - * If the set of endpoints, clusters, or attributes that are supported changes, AttributePathExpandIterator must be + * The iterator does not copy the given AttributePathParams. The given AttributePathParams must remain valid when using the + * iterator. If the set of endpoints, clusters, or attributes that are supported changes, AttributePathExpandIterator must be * reinitialized. * * A initialized iterator will return the first valid path, no need to call Next() before calling Get() for the first time.