From a9ac8a838cdac29ed3b9092cc26580f7546f3409 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Mon, 17 Dec 2012 17:03:48 -0600 Subject: [PATCH] Fix code typo. --- _includes/tutorial/building-outputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/tutorial/building-outputs.md b/_includes/tutorial/building-outputs.md index d27a9eb19..d94065e04 100644 --- a/_includes/tutorial/building-outputs.md +++ b/_includes/tutorial/building-outputs.md @@ -14,7 +14,7 @@ For example, if the user wants to output [time series objects](http://stat.ethz.
reactiveTimeSeries <- function(func) {
     reactive(function() {
-        val < func()
+        val <- func()
         list(start = tsp(val)[1],
              end = tsp(val)[2],
              freq = tsp(val)[3],