missing ()

This commit is contained in:
Yihui Xie
2013-09-25 21:52:18 -05:00
parent e088c7bc57
commit addf48c91a

View File

@@ -122,7 +122,7 @@ shinyServer(function(input, output) {
fib(as.numeric(input$n))
}
output$nthValue <- renderText({ currentFib })
output$nthValue <- renderText({ currentFib() })
})
{% endhighlight %}