Skip to content

Commit 29df389

Browse files
committed
fix documentation of call and ANY
1 parent f980554 commit 29df389

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: struct
22
Type: Package
33
Title: Statistics in R Using Class-based Templates
4-
Version: 1.15.4
4+
Version: 1.15.5
55
Authors@R: c(
66
person(
77
c("Gavin","Rhys"),

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Changes 1.15.5
2+
+ update automated documentation generation
3+
14
Changes 1.15.2
25
+ add ellipsis to model methods
36

R/zzz.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ get_description=function(id) {
104104
cd = gsub('[a annotation_database]','annotation_database()',cd,fixed = TRUE)
105105
cd = gsub('[a logical]','FALSE',cd,fixed = TRUE)
106106
cd = gsub('[a data.frame]','data.frame(id=NA)',cd,fixed = TRUE)
107-
str=c(str,eg,cd,'')
107+
cd = gsub('[a call]','call("example")',cd,fixed = TRUE)
108+
cd = gsub('[a ANY]','"ANY"',cd,fixed = TRUE)
108109

110+
str=c(str,eg,cd,'')
109111

110112
return(unlist(str))
111113
}

0 commit comments

Comments
 (0)