Merge pull request #242 from yihui/patch-2

missing ()
This commit is contained in:
Joe Cheng
2013-09-26 10:31:14 -07:00

View File

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