Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / histogram / doc / getting_started.qbk
index 6e57bde..80e553d 100644 (file)
@@ -1,3 +1,10 @@
+[/
+            Copyright Hans Dembinski 2018 - 2019.
+   Distributed under the Boost Software License, Version 1.0.
+      (See accompanying file LICENSE_1_0.txt or copy at
+            https://www.boost.org/LICENSE_1_0.txt)
+]
+
 [section:getting_started Getting started]
 
 Here are some commented examples to copy-paste from, this should allow you to kick off a project with Boost.Histogram. If you prefer a traditional structured exposition, go to the [link histogram.guide user guide].
@@ -50,7 +57,7 @@ The library was designed to be very flexible and modular. The modularity is used
 
 [section Standard library algorithms]
 
-The library was designed to work well with the C++ standard library. Here is an example on how to get the maximum highest count in a 3d histogram with `std::max_element`.
+The library was designed to work well with the C++ standard library. Here is an example on how to get the most common color from an image, using a 3d histogram and `std::max_element`.
 
 [import ../examples/getting_started_listing_04.cpp]
 [getting_started_listing_04]