Skip to content

Commit 5a41a00

Browse files
fix typos mentioned in PR comments
1 parent 309eb9b commit 5a41a00

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libs/libvtrutil/src/vtr_log.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* Three types of log message types are defined:
1515
* - VTR_LOG : The standard 'info' type log message
16-
* - VTR_LOG_WARN : A warning log message. This represents unusual condition that may indicate an issue but execution continues
16+
* - VTR_LOG_WARN : A warning log message. This represents an unusual condition that may indicate an issue but execution continues
1717
* - VTR_LOG_ERROR : An error log message. This represents a clear issue that should result in stopping the program execution.
1818
* Please note that using this log message will not actually terminate the program. So a VtrError should be thrown
1919
* after all the necessary VTR_LOG_ERROR messages are printed.

vpr/src/base/blk_loc_registry.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ class BlkLocRegistry {
4848
/// (blocks that are not locked down to a single location)
4949
std::vector<ClusterBlockId> movable_blocks_;
5050

51-
///@brief Stores ClusterBlockId of all movable clustered of each block type
52-
std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;
53-
5451
public:
52+
53+
///@brief Stores ClusterBlockId of all movable clustered blocks of each block type
54+
std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;
5555
const vtr::vector_map<ClusterBlockId, t_block_loc>& block_locs() const;
5656
vtr::vector_map<ClusterBlockId, t_block_loc>& mutable_block_locs();
5757

0 commit comments

Comments
 (0)