Browse code

SummarizedExperiment 1.35.5

Fix typos in error message.

Hervé Pagès authored on 24/10/2024 04:33:07
Showing 2 changed files

... ...
@@ -8,7 +8,7 @@ biocViews: Genetics, Infrastructure, Sequencing, Annotation, Coverage,
8 8
 	GenomeAnnotation
9 9
 URL: https://bioconductor.org/packages/SummarizedExperiment
10 10
 BugReports: https://github.com/Bioconductor/SummarizedExperiment/issues
11
-Version: 1.35.4
11
+Version: 1.35.5
12 12
 License: Artistic-2.0
13 13
 Encoding: UTF-8
14 14
 Authors@R: c(
... ...
@@ -264,8 +264,8 @@ setGeneric("assays<-", signature=c("x", "value"),
264 264
     ## not the case. This is for symetry with the behavior of the getter.
265 265
     ## See https://github.com/Bioconductor/SummarizedExperiment/issues/35
266 266
     if (withDimnames && !.assays_have_expected_dimnames(value, dimnames(x)))
267
-        stop(wmsg("please use 'assay(x, withDimnames=FALSE)) <- value' ",
268
-                  "or 'assays(x, withDimnames=FALSE)) <- value' when ",
267
+        stop(wmsg("please use 'assay(x, withDimnames=FALSE) <- value' ",
268
+                  "or 'assays(x, withDimnames=FALSE) <- value' when ",
269 269
                   "the rownames or colnames of the supplied assay(s) ",
270 270
                   "are not identical to those of the receiving ",
271 271
                   class(x), " object 'x'"))