From 42d8dcd0725e073203743286a3babbe44daca954 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Mon, 2 Sep 2024 16:45:10 +0200 Subject: [PATCH] Fix typo --- src/osp-history-stats-users-coedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }