Skip to content

Commit cecf636

Browse files
committed
Fix return value type in doxygen
Fixes: 415c401 ("wrap dynamic subscription functions") Change-Id: I66912530d8aa16bb4dde3d35611be1e6e4247b36
1 parent ad07026 commit cecf636

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Session.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ Subscription Session::onNotification(
564564
* @param anchorTime Optional anchor time for the period. Anchor time acts as a reference point for the period.
565565
* @param stopTime Optional stop time ending the notification subscription.
566566
*
567-
* @return A YangPushSubscription handle.
567+
* @return A DynamicSubscription handle.
568568
*/
569569
DynamicSubscription Session::yangPushPeriodic(
570570
const std::optional<std::variant<std::string, libyang::DataNodeAny>>& filter,
@@ -601,7 +601,7 @@ DynamicSubscription Session::yangPushPeriodic(
601601
* @param syncOnStart Whether to start with a notification of the current state.
602602
* @param stopTime Optional stop time ending the notification subscription.
603603
*
604-
* @return A YangPushSubscription handle.
604+
* @return A DynamicSubscription handle.
605605
*/
606606
DynamicSubscription Session::yangPushOnChange(
607607
const std::optional<std::variant<std::string, libyang::DataNodeAny>>& filter,
@@ -650,7 +650,7 @@ DynamicSubscription Session::yangPushOnChange(
650650
* @param stopTime Optional stop time ending the subscription.
651651
* @param startTime Optional start time of the subscription, used for replaying stored notifications.
652652
*
653-
* @return A YangPushSubscription handle.
653+
* @return A DynamicSubscription handle.
654654
*/
655655
DynamicSubscription Session::subscribeNotifications(
656656
const std::optional<std::variant<std::string, libyang::DataNodeAny>>& filter,

0 commit comments

Comments
 (0)