Skip to content

Commit 0899e1a

Browse files
authored
Apply suggestions from code review
Signed-off-by: Gunj Joshi <[email protected]>
1 parent b699b55 commit 0899e1a

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/math/base/special/sincosd

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/special/sincosd/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# sincosd
2222

23-
> Simultaneously compute the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an `angle` measured in degrees.
23+
> Simultaneously compute the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var sincosd = require( '@stdlib/math/base/special/sincosd' );
3232

3333
#### sincosd( x )
3434

35-
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an `angle` measured in degrees.
35+
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
3636

3737
```javascript
3838
var v = sincosd( 0.0 );
@@ -47,7 +47,7 @@ v = sincosd( -30.0 );
4747

4848
#### sincosd.assign( x, out, stride, offset )
4949

50-
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an `angle` measured in degrees and assigns the results to a provided output array.
50+
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees and assigns the results to a provided output array.
5151

5252
```javascript
5353
var Float64Array = require( '@stdlib/array/float64' );
@@ -117,7 +117,7 @@ for ( i = 0; i < x.length; i++ ) {
117117

118118
#### stdlib_base_sincosd( x, &sine, &cosine )
119119

120-
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an `angle` measured in degrees.
120+
Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
121121

122122
```c
123123
double cosine;

0 commit comments

Comments
 (0)