Skip to content

Commit de00626

Browse files
committed
Remove dublicate </equation> comment
1 parent 19ebafa commit de00626

File tree

1 file changed

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

1 file changed

+6
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ limitations under the License.
2626

2727
The derivative of the normalized [cardinal sine][sinc] is defined as
2828

29+
<!--lint disable-->
30+
2931
<!-- <equation class="equation" label="eq:cosc" align="center" raw=""\operatorname{cosc}(x) = \begin{cases} \frac{\cos(\pi x)}{x} - \frac{\sin( \pi x)}{\pi x^2} & \textrm{if}\ x \neq 0 \\ 0 & \textrm{if}\ x = 0\end{cases}" alt="Derivative of the normalized cardinal sine."> -->
3032

3133
<div class="equation" align="center" data-raw-text="\operatorname{cosc}(x) = \begin{cases} \frac{\cos(\pi x)}{x} - \frac{\sin( \pi x)}{\pi x^2} &amp; \textrm{if}\ x \neq 0 \\ 0 &amp; \textrm{if}\ x = 0\end{cases}" data-equation="eq:cosc">
@@ -35,7 +37,7 @@ The derivative of the normalized [cardinal sine][sinc] is defined as
3537

3638
<!-- </equation> -->
3739

38-
<!-- </equation> -->
40+
<!--lint enable-->
3941

4042
for any real number `x`.
4143

@@ -48,7 +50,7 @@ for any real number `x`.
4850
## Usage
4951

5052
```javascript
51-
var cosc = require("@stdlib/math/base/special/cosc");
53+
var cosc = require('@stdlib/math/base/special/cosc');
5254
```
5355

5456
#### cosc( x )
@@ -80,8 +82,8 @@ v = cosc(NaN);
8082
<!-- eslint no-undef: "error" -->
8183

8284
```javascript
83-
var linspace = require("@stdlib/math/utils/linspace");
84-
var cosc = require("@stdlib/math/base/special/cosc");
85+
var linspace = require('@stdlib/math/utils/linspace');
86+
var cosc = require('@stdlib/math/base/special/cosc');
8587

8688
var x = linspace(-5.0, 5.0, 100);
8789
var i;

0 commit comments

Comments
 (0)