From 18e2938cdf2ea6ca7222b1e33fd3f69afaa35c94 Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Fri, 30 Oct 2020 14:44:06 -0700 Subject: [PATCH] Fix comments in BoundaryTree class --- vtkm/worklet/contourtree_distributed/BoundaryTree.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vtkm/worklet/contourtree_distributed/BoundaryTree.h b/vtkm/worklet/contourtree_distributed/BoundaryTree.h index d6cbe2203..e78264576 100644 --- a/vtkm/worklet/contourtree_distributed/BoundaryTree.h +++ b/vtkm/worklet/contourtree_distributed/BoundaryTree.h @@ -74,12 +74,12 @@ namespace contourtree_distributed /// /// A contour tree for boundary vertices with the interior abstracted. /// This is primarily a data storage class. The actual constuction of -/// the BRACT is performed by the BoundaryTreeMaker -/// (BRACTMaker). As a data store, this class primarily stores a set of -/// arrays and provides convenience functions for interacting with the +/// the BoundaryTree performed by the BoundaryTreeMaker +/// As a data store, this class primarily stores a set of arrays +/// and provides convenience functions for interacting with the /// the data, e.g., to export the data to dot. class BoundaryTree -{ // class BRACT +{ // class BoundaryTree public: // for each vertex, we store the index vtkm::worklet::contourtree_augmented::IdArrayType VertexIndex; @@ -121,7 +121,7 @@ public: void PrintContent(std::ostream& outStream) const; std::string DebugPrint(const char* message, const char* fileName, long lineNum) const; inline std::string PrintArraySizes() const; -}; +}; // class BoundaryTree // prints the contents of the BRACT for comparison with sweep and merge