diff --git a/lib/node_modules/@stdlib/random/base/discrete-uniform/lib/_discrete_uniform.js b/lib/node_modules/@stdlib/random/base/discrete-uniform/lib/_discrete_uniform.js index 2acc5fbb20bf..b57b62e7c577 100644 --- a/lib/node_modules/@stdlib/random/base/discrete-uniform/lib/_discrete_uniform.js +++ b/lib/node_modules/@stdlib/random/base/discrete-uniform/lib/_discrete_uniform.js @@ -14,24 +14,24 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. -*/ - -'use strict'; - -/* -* The original C++ code and copyright notice are from the [Boost library]{http://www.boost.org/doc/libs/1_65_1/doc/html/boost/random/uniform_int_distribution.html}. * -* The implementation has been modified for JavaScript. -*/ - -/* +* +* ## Notice +* +* The original C++ code and copyright notice are from the [Boost library]{http://www.boost.org/doc/libs/1_65_1/doc/html/boost/random/uniform_int_distribution.html}. The implementation has been modified for JavaScript. +* +* ```text * (C) Copyright John Maddock 2006. * (C) Copyright Steven Watanabe 2011. +* * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file * LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) +* ``` */ +'use strict'; + // MODULES // var MAX_SAFE_INTEGER = require( '@stdlib/constants/math/float64-max-safe-integer' );