From 6e6bbfff4ce6c748c982badcd136fa7e39f231c6 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Thu, 10 Nov 2022 10:53:17 -0500 Subject: [PATCH] update docstring for Ordering::+= --- gtsam/inference/Ordering.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/inference/Ordering.h b/gtsam/inference/Ordering.h index 97d5bf110..c9c6a6176 100644 --- a/gtsam/inference/Ordering.h +++ b/gtsam/inference/Ordering.h @@ -73,7 +73,7 @@ public: /** * @brief Append new keys to the ordering as `ordering += keys`. * - * @param key + * @param keys The key vector to append to this ordering. * @return The ordering variable with appended keys. */ This& operator+=(KeyVector& keys);