diff --git a/src/osp-history-stats-users-coedit.cpp b/src/osp-history-stats-users-coedit.cpp index 8440ce3..d566aeb 100644 --- a/src/osp-history-stats-users-coedit.cpp +++ b/src/osp-history-stats-users-coedit.cpp @@ -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"; }