From fbb5a731b240ed64fbbb020e2567149960c00551 Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Mon, 25 May 2015 07:30:55 +0530 Subject: Corrected error message --- R/idframe.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/idframe.R b/R/idframe.R index 707e4a5..04c1f4c 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -34,7 +34,7 @@ idframe <- function(output=numeric(0),input=numeric(0), if(length(output)!=0 && length(input)!=0){ if(dim(output)[1]!=dim(input)[1]) # observation validation - stop("Dimensions don't matach") + stop("Dimensions don't match") } # Object Constructor -- cgit