Skip to content

Commit 3bf2b24

Browse files
committed
fix bioc errors
- remove use of ::: - remove use of latex incompatible unicode
1 parent edb4541 commit 3bf2b24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/struct_class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ setMethod('.DollarNames','struct_class',.DollarNames.struct_class)
647647
setMethod(f = 'as.code',
648648
signature = c('struct_class'),
649649
definition = function(M,start = 'M = ',mode = 'compact',quiet=FALSE) {
650-
str=struct:::.as_code(M,start,mode)
650+
str = .as_code(M,start,mode)
651651

652652
if (!quiet) {
653653
cat(str)

R/zzz.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ get_description=function(id) {
3131
'@section ','Inheritance: ',
3232
paste0('A `', class(M),
3333
'` object inherits the following `struct` classes: \\cr\\cr'),
34-
paste0('`',i[1:w],'()`',collapse = ' \U2B62 '))
34+
paste0('`[',i[1:w],']`',collapse = ' >> '))
3535

3636

3737
# citations

0 commit comments

Comments
 (0)