diff --git a/DESCRIPTION b/DESCRIPTION index ffc765b..8926650 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: struct Type: Package Title: Statistics in R Using Class-based Templates -Version: 1.15.4 +Version: 1.15.5 Authors@R: c( person( c("Gavin","Rhys"), diff --git a/NEWS b/NEWS index 04487e5..b667199 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +Changes 1.15.5 ++ update automated documentation generation + Changes 1.15.2 + add ellipsis to model methods diff --git a/R/zzz.R b/R/zzz.R index f626ca5..d02266a 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -104,8 +104,10 @@ get_description=function(id) { cd = gsub('[a annotation_database]','annotation_database()',cd,fixed = TRUE) cd = gsub('[a logical]','FALSE',cd,fixed = TRUE) cd = gsub('[a data.frame]','data.frame(id=NA)',cd,fixed = TRUE) - str=c(str,eg,cd,'') + cd = gsub('[a call]','call("example")',cd,fixed = TRUE) + cd = gsub('[a ANY]','"ANY"',cd,fixed = TRUE) + str=c(str,eg,cd,'') return(unlist(str)) }