Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / histogram / examples / guide_axis_with_labels.cpp
index 865edf2..3f3ad8b 100644 (file)
@@ -13,7 +13,7 @@ int main() {
 
   // create a 2d-histogram with an "age" and an "income" axis
   auto h = make_histogram(axis::regular<>(20, 0.0, 100.0, "age in years"),
-                          axis::regular<>(20, 0.0, 100.0, "yearly income in 1000 EUR"));
+                          axis::regular<>(20, 0.0, 100.0, "yearly income in Thousands"));
 
   // do something with h
 }