diff --git a/doc/distributions/normal.qbk b/doc/distributions/normal.qbk index d3cadde6b..b879b29b6 100644 --- a/doc/distributions/normal.qbk +++ b/doc/distributions/normal.qbk @@ -19,8 +19,11 @@ // Construct: normal_distribution(RealType mean = 0, RealType sd = 1); // Accessors: - RealType mean()const; - RealType standard_deviation()const; + RealType mean()const; // location. + RealType standard_deviation()const; // scale. + // Synonyms, provided to allow generic use of find_location and find_scale. + RealType location()const; + RealType scale()const; }; }} // namespaces