Skip to content

Commit

Permalink
roxygenize
Browse files Browse the repository at this point in the history
  • Loading branch information
yihui committed Oct 6, 2013
1 parent 16c5f4e commit 2beb241
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions man/runApp.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
\alias{runApp}
\title{Run Shiny Application}
\usage{
runApp(appDir = getwd(), port = 8100L,
runApp(appDir = getwd(), port = NULL,
launch.browser = getOption("shiny.launch.browser", interactive()),
workerId = "")
}
Expand All @@ -13,7 +13,7 @@
\code{index.html}. Defaults to the working directory.}

\item{port}{The TCP port that the application should
listen on. Defaults to port 8100.}
listen on. Defaults to choosing a random port.}

\item{launch.browser}{If true, the system's default web
browser will be launched automatically after the app is
Expand Down
4 changes: 2 additions & 2 deletions man/runExample.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
\alias{runExample}
\title{Run Shiny Example Applications}
\usage{
runExample(example = NA, port = 8100L,
runExample(example = NA, port = NULL,
launch.browser = getOption("shiny.launch.browser", interactive()))
}
\arguments{
\item{example}{The name of the example to run, or
\code{NA} (the default) to list the available examples.}

\item{port}{The TCP port that the application should
listen on. Defaults to port 8100.}
listen on. Defaults to choosing a random port.}

\item{launch.browser}{If true, the system's default web
browser will be launched automatically after the app is
Expand Down
4 changes: 2 additions & 2 deletions man/runGist.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
\alias{runGist}
\title{Run a Shiny application from https://gist.github.com}
\usage{
runGist(gist, port = 8100L,
runGist(gist, port = NULL,
launch.browser = getOption("shiny.launch.browser", interactive()))
}
\arguments{
Expand All @@ -13,7 +13,7 @@
valid values.}

\item{port}{The TCP port that the application should
listen on. Defaults to port 8100.}
listen on. Defaults to choosing a random port.}

\item{launch.browser}{If true, the system's default web
browser will be launched automatically after the app is
Expand Down
4 changes: 2 additions & 2 deletions man/runGitHub.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
\title{Run a Shiny application from a GitHub repository}
\usage{
runGitHub(repo, username = getOption("github.user"),
ref = "master", subdir = NULL, port = 8100,
ref = "master", subdir = NULL, port = NULL,
launch.browser = getOption("shiny.launch.browser", interactive()))
}
\arguments{
Expand All @@ -20,7 +20,7 @@
path such as `\code{"inst/shinyapp"}.}

\item{port}{The TCP port that the application should
listen on. Defaults to port 8100.}
listen on. Defaults to choosing a random port.}

\item{launch.browser}{If true, the system's default web
browser will be launched automatically after the app is
Expand Down
4 changes: 2 additions & 2 deletions man/runUrl.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
\alias{runUrl}
\title{Run a Shiny application from a URL}
\usage{
runUrl(url, filetype = NULL, subdir = NULL, port = 8100,
runUrl(url, filetype = NULL, subdir = NULL, port = NULL,
launch.browser = getOption("shiny.launch.browser", interactive()))
}
\arguments{
Expand All @@ -18,7 +18,7 @@
path such as `\code{"inst/shinyapp"}.}

\item{port}{The TCP port that the application should
listen on. Defaults to port 8100.}
listen on. Defaults to choosing a random port.}

\item{launch.browser}{If true, the system's default web
browser will be launched automatically after the app is
Expand Down

0 comments on commit 2beb241

Please sign in to comment.