Some typo corrections

This commit is contained in:
Simon Giraudot 2017-01-27 15:15:27 +01:00
parent 4027ef814c
commit ffd7af06ef
4 changed files with 9 additions and 9 deletions

View File

@ -268,7 +268,7 @@ namespace internal {
/// Potential additional properties are ignored. /// Potential additional properties are ignored.
/// ///
/// Properties are handled through a variadic list of property /// Properties are handled through a variadic list of property
/// handlers. A property handle can either be: /// handlers. A property handler can either be:
/// ///
/// - A `std::pair<PropertyMap, LASProperty >` if the user wants to /// - A `std::pair<PropertyMap, LASProperty >` if the user wants to
/// read a LAS property as a scalar value `LASProperty::type` (for /// read a LAS property as a scalar value `LASProperty::type` (for
@ -315,7 +315,7 @@ namespace internal {
/// @tparam OutputIterator iterator over output points. /// @tparam OutputIterator iterator over output points.
/// @tparam PropertyHandler handlers to recover properties. /// @tparam PropertyHandler handlers to recover properties.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------

View File

@ -561,7 +561,7 @@ namespace internal {
/// @tparam OutputIterator iterator over output points. /// @tparam OutputIterator iterator over output points.
/// @tparam PropertyHandler handlers to recover properties. /// @tparam PropertyHandler handlers to recover properties.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
@ -631,7 +631,7 @@ bool read_ply_points_with_properties (std::istream& stream,
/// @tparam PointPMap is a model of `WritablePropertyMap` with value type `CGAL::Point_3`. /// @tparam PointPMap is a model of `WritablePropertyMap` with value type `CGAL::Point_3`.
/// @tparam NormalPMap is a model of `WritablePropertyMap` with value type `CGAL::Vector_3`. /// @tparam NormalPMap is a model of `WritablePropertyMap` with value type `CGAL::Vector_3`.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------

View File

@ -159,7 +159,7 @@ namespace internal {
/// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `CGAL::Point_3`. /// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `CGAL::Point_3`.
/// @tparam PropertyHandler handlers to recover properties. /// @tparam PropertyHandler handlers to recover properties.
/// ///
/// @return true on success. /// @return `true` on success.
template <typename ForwardIterator, template <typename ForwardIterator,
typename PointMap, typename PointMap,
typename ... PropertyHandler> typename ... PropertyHandler>
@ -229,7 +229,7 @@ bool write_las_points_with_properties (std::ostream& stream, ///< output stream
/// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `Point_3<Kernel>`. /// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `Point_3<Kernel>`.
/// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`. /// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
template < typename ForwardIterator, template < typename ForwardIterator,

View File

@ -272,7 +272,7 @@ namespace internal {
/// @tparam ForwardIterator iterator over input points. /// @tparam ForwardIterator iterator over input points.
/// @tparam PropertyHandler handlers to recover properties. /// @tparam PropertyHandler handlers to recover properties.
/// ///
/// @return true on success. /// @return `true` on success.
template < typename ForwardIterator, template < typename ForwardIterator,
typename ... PropertyHandler> typename ... PropertyHandler>
bool bool
@ -324,7 +324,7 @@ write_ply_points_with_properties(
/// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`. /// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`.
/// @tparam VectorMap is a model of `ReadablePropertyMap` with a value type `Vector_3<Kernel>`. /// @tparam VectorMap is a model of `ReadablePropertyMap` with a value type `Vector_3<Kernel>`.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
template < typename ForwardIterator, template < typename ForwardIterator,
@ -377,7 +377,7 @@ write_ply_points_and_normals(
/// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `Point_3<Kernel>`. /// @tparam PointMap is a model of `ReadablePropertyMap` with a value_type = `Point_3<Kernel>`.
/// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`. /// It can be omitted if the value type of `ForwardIterator` is convertible to `Point_3<Kernel>`.
/// ///
/// @return true on success. /// @return `true` on success.
// This variant requires all parameters. // This variant requires all parameters.
template < typename ForwardIterator, template < typename ForwardIterator,