diff --git a/lib/node_modules/@stdlib/math/base/special/aversin/README.md b/lib/node_modules/@stdlib/math/base/special/aversin/README.md
index b16c6a4e7f6..ffc6be40c42 100644
--- a/lib/node_modules/@stdlib/math/base/special/aversin/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/aversin/README.md
@@ -105,6 +105,98 @@ for ( i = 0; i < x.length; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/aversin.h"
+```
+
+#### stdlib_base_aversin( x )
+
+Compute the [inverse versed sine][inverse-versed-sine] of a double-precision floating-point number (in radians).
+
+```c
+double out = stdlib_base_aversin( 3.141592653589793/2.0 );
+// returns ~2.1783
+```
+
+If `x < 0`, `x > 2`, or `x` is `NaN`, the function returns `NaN`.
+
+```c
+double out = stdlib_base_aversin( 3.141592653589793 );
+// returns NaN
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_aversin( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/aversin.h"
+#include
+
+int main( void ) {
+ const double x[] = { -2.5, -2.0, -1.5, -1.0, -0.5, 0.5, 1.0, 1.5, 2.0, 2.5 };
+
+ double v;
+ int i;
+ for ( i = 0; i < 10; i++ ) {
+ v = stdlib_base_aversin( x[ i ] );
+ printf( "aversin(%lf) = %lf\n", x[ i ], v );
+ }
+}
+```
+
+
+
+
+
+
+
+
+