Skip to content

Commit

Permalink
fix bioc errors
Browse files Browse the repository at this point in the history
- remove use of :::
- remove use of latex incompatible unicode
  • Loading branch information
grlloyd committed Feb 2, 2024
1 parent edb4541 commit 3bf2b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/struct_class.R
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ setMethod('.DollarNames','struct_class',.DollarNames.struct_class)
setMethod(f = 'as.code',
signature = c('struct_class'),
definition = function(M,start = 'M = ',mode = 'compact',quiet=FALSE) {
str=struct:::.as_code(M,start,mode)
str = .as_code(M,start,mode)

if (!quiet) {
cat(str)
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ get_description=function(id) {
'@section ','Inheritance: ',
paste0('A `', class(M),
'` object inherits the following `struct` classes: \\cr\\cr'),
paste0('`',i[1:w],'()`',collapse = ' \U2B62 '))
paste0('`[',i[1:w],']`',collapse = ' >> '))


# citations
Expand Down

0 comments on commit 3bf2b24

Please sign in to comment.