Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tryuan99 committed Feb 25, 2025
1 parent 726394b commit 4ec39f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assignment/cover_assignment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ std::vector<Assignment::AssignmentItem> CoverAssignment::Assign() const {
return std::vector<AssignmentItem>();
}

// Record the assignemnts.
// Record the assignments.
std::vector<AssignmentItem> assignments;
assignments.reserve(num_agents_);
for (int i = 0; i < num_agents_; ++i) {
Expand Down
2 changes: 1 addition & 1 deletion assignment/even_assignment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ std::vector<Assignment::AssignmentItem> EvenAssignment::Assign() const {
return std::vector<AssignmentItem>();
}

// Record the assignemnts.
// Record the assignments.
std::vector<AssignmentItem> assignments;
assignments.reserve(num_agents_);
for (int i = 0; i < num_agents_; ++i) {
Expand Down

0 comments on commit 4ec39f3

Please sign in to comment.