From 5fb2f024dcf25df38118651ef229880b26bb6d39 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 18 Jun 2021 23:44:57 +0200 Subject: [PATCH] Fixed some typos --- src/db/db/gsiDeclDbRecursiveInstanceIterator.cc | 12 ++++++------ src/db/db/gsiDeclDbRecursiveShapeIterator.cc | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/db/db/gsiDeclDbRecursiveInstanceIterator.cc b/src/db/db/gsiDeclDbRecursiveInstanceIterator.cc index f2ab1d842..588dbf258 100644 --- a/src/db/db/gsiDeclDbRecursiveInstanceIterator.cc +++ b/src/db/db/gsiDeclDbRecursiveInstanceIterator.cc @@ -226,37 +226,37 @@ Class decl_RecursiveInstanceIterator ("db", "Recu "@brief Gets the top cell this iterator is connected to\n" ) + gsi::method ("region", &db::RecursiveInstanceIterator::region, - "@brief Gets the basic region that is iterator is using\n" + "@brief Gets the basic region that this iterator is using\n" "The basic region is the overall box the region iterator iterates over. " "There may be an additional complex region that confines the region iterator. " "See \\complex_region for this attribute.\n" ) + gsi::method_ext ("complex_region", &complex_region, - "@brief Gets the complex region that is iterator is using\n" + "@brief Gets the complex region that this iterator is using\n" "The complex region is the effective region (a \\Region object) that the " "iterator is selecting from the layout. This region can be a single box " "or a complex region.\n" ) + gsi::method ("region=", (void (db::RecursiveInstanceIterator::*)(const db::RecursiveInstanceIterator::box_type &)) &db::RecursiveInstanceIterator::set_region, gsi::arg ("box_region"), - "@brief Sets the rectangular region that is iterator is iterating over\n" + "@brief Sets the rectangular region that this iterator is iterating over\n" "See \\region for a description of this attribute.\n" "Setting a simple region will reset the complex region to a rectangle and reset the iterator to " "the beginning of the sequence." ) + gsi::method ("region=", (void (db::RecursiveInstanceIterator::*)(const db::RecursiveInstanceIterator::region_type &)) &db::RecursiveInstanceIterator::set_region, gsi::arg ("complex_region"), - "@brief Sets the complex region that is iterator is using\n" + "@brief Sets the complex region that this iterator is using\n" "See \\complex_region for a description of this attribute. Setting the complex region will " "reset the basic region (see \\region) to the bounding box of the complex region and " "reset the iterator to the beginning of the sequence.\n" ) + gsi::method ("confine_region", (void (db::RecursiveInstanceIterator::*)(const db::RecursiveInstanceIterator::box_type &)) &db::RecursiveInstanceIterator::confine_region, gsi::arg ("box_region"), - "@brief Confines the region that is iterator is iterating over\n" + "@brief Confines the region that this iterator is iterating over\n" "This method is similar to setting the region (see \\region=), but will confine any region (complex or simple) already set. " "Essentially it does a logical AND operation between the existing and given region. " "Hence this method can only reduce a region, not extend it.\n" ) + gsi::method ("confine_region", (void (db::RecursiveInstanceIterator::*)(const db::RecursiveInstanceIterator::region_type &)) &db::RecursiveInstanceIterator::confine_region, gsi::arg ("complex_region"), - "@brief Confines the region that is iterator is iterating over\n" + "@brief Confines the region that this iterator is iterating over\n" "This method is similar to setting the region (see \\region=), but will confine any region (complex or simple) already set. " "Essentially it does a logical AND operation between the existing and given region. " "Hence this method can only reduce a region, not extend it.\n" diff --git a/src/db/db/gsiDeclDbRecursiveShapeIterator.cc b/src/db/db/gsiDeclDbRecursiveShapeIterator.cc index e0852b7d2..56e41773c 100644 --- a/src/db/db/gsiDeclDbRecursiveShapeIterator.cc +++ b/src/db/db/gsiDeclDbRecursiveShapeIterator.cc @@ -332,7 +332,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method has been introduced in version 0.27.\n" ) + gsi::method ("region", &db::RecursiveShapeIterator::region, - "@brief Gets the basic region that is iterator is using\n" + "@brief Gets the basic region that this iterator is using\n" "The basic region is the overall box the region iterator iterates over. " "There may be an additional complex region that confines the region iterator. " "See \\complex_region for this attribute.\n" @@ -340,7 +340,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method has been introduced in version 0.23.\n" ) + gsi::method_ext ("complex_region", &complex_region, - "@brief Gets the complex region that is iterator is using\n" + "@brief Gets the complex region that this iterator is using\n" "The complex region is the effective region (a \\Region object) that the " "iterator is selecting from the layout layers. This region can be a single box " "or a complex region.\n" @@ -348,7 +348,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method has been introduced in version 0.25.\n" ) + gsi::method ("region=", (void (db::RecursiveShapeIterator::*)(const db::RecursiveShapeIterator::box_type &)) &db::RecursiveShapeIterator::set_region, gsi::arg ("box_region"), - "@brief Sets the rectangular region that is iterator is iterating over\n" + "@brief Sets the rectangular region that this iterator is iterating over\n" "See \\region for a description of this attribute.\n" "Setting a simple region will reset the complex region to a rectangle and reset the iterator to " "the beginning of the sequence." @@ -356,7 +356,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method has been introduced in version 0.23.\n" ) + gsi::method ("region=", (void (db::RecursiveShapeIterator::*)(const db::RecursiveShapeIterator::region_type &)) &db::RecursiveShapeIterator::set_region, gsi::arg ("complex_region"), - "@brief Sets the complex region that is iterator is using\n" + "@brief Sets the complex region that this iterator is using\n" "See \\complex_region for a description of this attribute. Setting the complex region will " "reset the basic region (see \\region) to the bounding box of the complex region and " "reset the iterator to the beginning of the sequence.\n" @@ -364,7 +364,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method overload has been introduced in version 0.25.\n" ) + gsi::method ("confine_region", (void (db::RecursiveShapeIterator::*)(const db::RecursiveShapeIterator::box_type &)) &db::RecursiveShapeIterator::confine_region, gsi::arg ("box_region"), - "@brief Confines the region that is iterator is iterating over\n" + "@brief Confines the region that this iterator is iterating over\n" "This method is similar to setting the region (see \\region=), but will confine any region (complex or simple) already set. " "Essentially it does a logical AND operation between the existing and given region. " "Hence this method can only reduce a region, not extend it.\n" @@ -372,7 +372,7 @@ Class decl_RecursiveShapeIterator ("db", "RecursiveS "This method has been introduced in version 0.25.\n" ) + gsi::method ("confine_region", (void (db::RecursiveShapeIterator::*)(const db::RecursiveShapeIterator::region_type &)) &db::RecursiveShapeIterator::confine_region, gsi::arg ("complex_region"), - "@brief Confines the region that is iterator is iterating over\n" + "@brief Confines the region that this iterator is iterating over\n" "This method is similar to setting the region (see \\region=), but will confine any region (complex or simple) already set. " "Essentially it does a logical AND operation between the existing and given region. " "Hence this method can only reduce a region, not extend it.\n"