From 36f60e47ad04be485160b61523b4ad76ec16b768 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 8 Jul 2017 23:11:46 +0300 Subject: [PATCH] Minor docs fixes, Trac ticket 10431. --- doc/noncopyable.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/noncopyable.qbk b/doc/noncopyable.qbk index 9e74ba0..c5f7957 100644 --- a/doc/noncopyable.qbk +++ b/doc/noncopyable.qbk @@ -18,9 +18,9 @@ [section Header ] -The header `` defines the class +The header `` defines the class `boost::noncopyable`. It is intended to be used as a private -base. `boost::noncopyable` has private (under C++03) or +base class. `boost::noncopyable` has private (under C++03) or deleted (under C++11) copy constructor and a copy assignment operator and can't be copied or assigned; a class that derives from it inherits these properties.