Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Sep 2, 2024
1 parent 4d21eba commit 42d8dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osp-history-stats-users-coedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class StatsHandler : public osmium::diff_handler::DiffHandler
std::ofstream out{filename};
out << "graph osmcoedit {\n";
for (auto const &p : m_userpairs) {
out << " U" << p.first.first << " -- U" << p.first.second << " [weigth=" << p.second << "]\n";
out << " U" << p.first.first << " -- U" << p.first.second << " [weight=" << p.second << "]\n";
}
out << "}\n";
}
Expand Down

0 comments on commit 42d8dcd

Please sign in to comment.