diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/README.md b/lib/node_modules/@stdlib/math/base/special/acosd/README.md
index 5b5c058d7e85..5a8931fb4746 100644
--- a/lib/node_modules/@stdlib/math/base/special/acosd/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/README.md
@@ -85,6 +85,94 @@ for ( i = 0; i < x.length; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/acosd.h"
+```
+
+#### stdlib_base_acosd( x )
+
+Computes the [arccosine][arccosine] (in degrees) of a double-precision floating-point number.
+
+```c
+double out = stdlib_base_acosd( 0.0 );
+// returns 90.0
+
+out = stdlib_base_acosd( 0.5 );
+// returns ~60.0
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_acosd( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/acosd.h"
+#include
+
+int main( void ) {
+ const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
+
+ double v;
+ int i;
+ for ( i = 0; i < 10; i++ ) {
+ v = stdlib_base_acosd( x[ i ] );
+ printf( "acosd(%lf) = %lf\n", x[ i ], v );
+ }
+}
+```
+
+
+
+
+
+
+
+
+