Skip to content

Commit 48252f6

Browse files
committed
parentheses
1 parent a92543b commit 48252f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/utils.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1866,15 +1866,15 @@ loadESTIMATEinfo <- function(info, ESTIMATE, constrain, warn){
18661866
acov <- try(solve(info), TRUE)
18671867
if(is(acov, 'try-error')){
18681868
if(warn)
1869-
warning('Could not invert information matrix; model may not be empirically identified.',
1869+
warning('Could not invert information matrix; model may not be (empirically) identified.',
18701870
call.=FALSE)
18711871
ESTIMATE$fail_invert_info <- TRUE
18721872
return(ESTIMATE)
18731873
} else ESTIMATE$fail_invert_info <- FALSE
18741874
SEtmp <- diag(solve(info))
18751875
if(any(is.na(SEtmp) | is.nan(SEtmp)) || any(SEtmp < 0)){
18761876
if(warn)
1877-
warning('Could not invert information matrix; model may not be empirically identified.',
1877+
warning('Could not invert information matrix; model may not be (empirically) identified.',
18781878
call.=FALSE)
18791879
ESTIMATE$fail_invert_info <- TRUE
18801880
return(ESTIMATE)

0 commit comments

Comments
 (0)