File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
nlp/expand-acronyms/docs/types
stats/padjust/test/fixtures/r Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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!';
Original file line number Diff line number Diff 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:
You can’t perform that action at this time.
0 commit comments