@@ -138,8 +138,8 @@ inherits( Module, WasmModule );
138138* var v = dmeanpw.main( N, xptr, 1 );
139139* // returns 2.0
140140*/
141- setReadOnly ( Module . prototype , 'main' , function dmeanpw ( N , xptr , strideX ) {
142- return this . _instance . exports . stdlib_strided_dmeanpw ( N , xptr , strideX ) ;
141+ setReadOnly ( Module . prototype , 'main' , function dmeanpw ( N , x , strideX ) {
142+ return this . _instance . exports . stdlib_strided_dmeanpw ( N , x , strideX ) ;
143143} ) ;
144144
145145/**
@@ -188,8 +188,8 @@ setReadOnly( Module.prototype, 'main', function dmeanpw( N, xptr, strideX ) {
188188* var sum = dmeanpw.ndarray( N, xptr, 1, 0 );
189189* // returns 2.0
190190*/
191- setReadOnly ( Module . prototype , 'ndarray' , function dmeanpw ( N , xptr , strideX , offsetX ) {
192- return this . _instance . exports . stdlib_strided_dmeanpw_ndarray ( N , xptr , strideX , offsetX ) ; // eslint-disable-line max-len
191+ setReadOnly ( Module . prototype , 'ndarray' , function dmeanpw ( N , x , strideX , offsetX ) {
192+ return this . _instance . exports . stdlib_strided_dmeanpw_ndarray ( N , x , strideX , offsetX ) ; // eslint-disable-line max-len
193193} ) ;
194194
195195
0 commit comments