Skip to content

Commit 1959ad3

Browse files
committed
Fix incorrect @param names in doc comments
Two Doxygen comments referenced parameter names that don't match their signatures: - odb dbGDSReader::processElement documented '@param str' instead of 'structure'. - drt FlexPA::createMultipleAccessPoints documented '@param rec' instead of 'rect'. Signed-off-by: eeshsaxena <eeshsaxena@gmail.com>
1 parent 169647b commit 1959ad3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/drt/src/pa/FlexPA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ class FlexPA
451451
* @param inst_term the instance terminal
452452
* @param aps Vector contaning the access points
453453
* @param apset Set containing access points data (auxilary)
454-
* @param rec Rect limiting where the point can be
454+
* @param rect Rect limiting where the point can be
455455
* @param layer_num access point layer
456456
* @param x_coords map of access point x coords
457457
* @param y_coords map of access point y coords

src/odb/include/odb/gdsin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class GDSReader
9696
/**
9797
* Parses a GDS Element from the GDS file
9898
*
99-
* @param str The GDS Structure to add the GDS Element to
99+
* @param structure The GDS Structure to add the GDS Element to
100100
*/
101101
bool processElement(dbGDSStructure* structure);
102102

0 commit comments

Comments
 (0)