From 753df6decf04cd9c6aac2c2c016cdb419f02e673 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 17 Dec 2020 09:39:21 +0100 Subject: [PATCH] poly: updated doc (const references) --- docs/md/poly.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/md/poly.md b/docs/md/poly.md index 5180dc5c3..06699e861 100644 --- a/docs/md/poly.md +++ b/docs/md/poly.md @@ -313,7 +313,7 @@ The `poly` class template offers a wide range of constructors, from the default one (which will return an uninitialized `poly` object) to the copy and move constructor, as well as the ability to create objects in-place.
Among others, there is a constructor that allows users to wrap unmanaged objects -in a `poly` instance: +in a `poly` instance (either const or non-const ones): ```cpp circle c;