diff --git a/doc/html/index.html b/doc/html/index.html
index e598f37a4..30ad1dd19 100644
--- a/doc/html/index.html
+++ b/doc/html/index.html
@@ -138,7 +138,7 @@
Adeel Ahmad (Karney's solution of direct and inverse geodesic problems)
- Yaghyavardhan Singh Khangarot (discrete frechet and hausdorff distance)
+ Yaghyavardhan Singh Khangarot (discrete Frechet and Hausdorff distance)
diff --git a/doc/imports.qbk b/doc/imports.qbk
index 2203ed882..e06c50678 100644
--- a/doc/imports.qbk
+++ b/doc/imports.qbk
@@ -32,6 +32,10 @@
[import src/examples/algorithms/correct.cpp]
[import src/examples/algorithms/densify.cpp]
[import src/examples/algorithms/densify_strategy.cpp]
+[import src/examples/algorithms/discrete_frechet_distance.cpp]
+[import src/examples/algorithms/discrete_frechet_distance_strategy.cpp]
+[import src/examples/algorithms/discrete_hausdorff_distance.cpp]
+[import src/examples/algorithms/discrete_hausdorff_distance_strategy.cpp]
[import src/examples/algorithms/distance.cpp]
[import src/examples/algorithms/difference.cpp]
[import src/examples/algorithms/envelope.cpp]
@@ -63,10 +67,6 @@
[import src/examples/algorithms/relation.cpp]
[import src/examples/algorithms/reverse.cpp]
[import src/examples/algorithms/return_envelope.cpp]
-[import src/examples/algorithms/discrete_frechet_distance.cpp]
-[import src/examples/algorithms/discrete_frechet_distance_strategy.cpp]
-[import src/examples/algorithms/discrete_hausdorff_distance.cpp]
-[import src/examples/algorithms/discrete_hausdorff_distance_strategy.cpp]
[import src/examples/algorithms/simplify.cpp]
[import src/examples/algorithms/sym_difference.cpp]
[import src/examples/algorithms/transform.cpp]
diff --git a/doc/make_qbk.py b/doc/make_qbk.py
index 49b61cae6..3ec544152 100755
--- a/doc/make_qbk.py
+++ b/doc/make_qbk.py
@@ -140,13 +140,13 @@ strategies = ["area::cartesian", "area::spherical", "area::geographic"
, "distance::pythagoras_point_box", "distance::haversine"
, "distance::cross_track", "distance::cross_track_point_box"
, "distance::projected_point"
- , "within::winding", "within::franklin", "within::crossings_multiply"
, "simplify::douglas_peucker"
, "side::side_by_triangle", "side::side_by_cross_track"
, "side::spherical_side_formula", "side::geographic"
, "transform::inverse_transformer", "transform::map_transformer"
, "transform::rotate_transformer", "transform::scale_transformer"
, "transform::translate_transformer", "transform::matrix_transformer"
+ , "within::winding", "within::franklin", "within::crossings_multiply"
]
views = ["box_view", "segment_view"
diff --git a/doc/release_notes.qbk b/doc/release_notes.qbk
index 0925408eb..e17b2c4d0 100644
--- a/doc/release_notes.qbk
+++ b/doc/release_notes.qbk
@@ -40,6 +40,7 @@
* [@https://github.com/boostorg/geometry/pull/505 505] Fixed overflow in overlay algorithms (thanks to Dane Springmeyer).
* [@https://github.com/boostorg/geometry/pull/518 518] Fixed passing of temporaries in append() (thanks to xventura81).
+* [@https://github.com/boostorg/geometry/pull/522 522] Support python3 in building documentation.
[/=================]
[heading Boost 1.68]