Skip to content

Commit 71edda1

Browse files
author
James Pooley
authored
Typo fix (hadley#172)
1 parent c99070b commit 71edda1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basic-reactivity.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The previous chapter covered the basics of the front end, the `ui` object that c
3838

3939
To achieve this independence, Shiny invokes your `server()` function each time a new session[^session] starts. Just like any other R function, when the server function is called it creates a new local environment that is independent of every other invocation of the function. This allows each session to have unique state, as well as isolating the variables created _inside_ the function. This is why almost all of the reactive programming you'll do in Shiny will be inside the server function[^exceptions].
4040

41-
[^session]: Each connection to a Shiny app starts a new session whether its connections from different people, or with multiple tabs from the same person.
41+
[^session]: Each connection to a Shiny app starts a new session whether it's connections from different people, or with multiple tabs from the same person.
4242

4343
[^exceptions]: The primary exception is where there's some work that can be shared across multiple users. For example, all users might be looking at the same large csv file, so you might as well load it once and share it between users. We'll come back to that idea in Chapter XYZ.
4444

0 commit comments

Comments
 (0)