Skip to content

Commit aff59a7

Browse files
committed
Fix lint errors
1 parent b348808 commit aff59a7

File tree

2 files changed

+4
-4
lines changed
  • lib/node_modules/@stdlib

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/nlp/expand-acronyms/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @example
2828
* var str = 'LOL, this is fun. I am ROFL.';
2929
* var out = expandAcronyms( str );
30-
* // returns 'laughing out loud, this is fun. I am rolling on the floor laughing.'
30+
* // returns 'laughing out loud, this is fun. I am rolling on the floor laughing.'
3131
*
3232
* @example
3333
* var str = 'brb, I need to check my mail. thx!';

lib/node_modules/@stdlib/stats/padjust/test/fixtures/r/runner.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ main <- function() {
153153

154154
# Generate test fixture data:
155155
pvals <- runif( 5, 0, 0.5 );
156-
n <- 15;
156+
n <- 15L;
157157
out <- p.adjust( pvals, method = "BH", n = n );
158158

159159
# Convert fixture data to JSON:
@@ -170,7 +170,7 @@ main <- function() {
170170

171171
# Generate test fixture data:
172172
pvals <- c( 0.3, 0.1, 0.1, 0.2 );
173-
n <- 10;
173+
n <- 10L;
174174
out <- p.adjust( pvals, method = "hommel", n = n );
175175

176176
# Convert fixture data to JSON:
@@ -187,7 +187,7 @@ main <- function() {
187187

188188
# Generate test fixture data:
189189
pvals <- c( 0.3, 0.1, 0.1, 0.2 );
190-
n <- 10;
190+
n <- 10L;
191191
out <- p.adjust( pvals, method = "BY", n = n );
192192

193193
# Convert fixture data to JSON:

0 commit comments

Comments
 (0)