Skip to content

Commit f2e0159

Browse files
authored
Change 'local' to 'global' in README
1 parent 2840994 commit f2e0159

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ app.listen(); // Will listen on port 80 which is set as default
5353
* [Request Object](#request-object)
5454
* [Middleware](#middleware)
5555
* [Create own middleware](#create-own-middleware)
56-
* [Using local variables](#local-variables)
56+
* [Using global variables](#global-variables)
5757
* [License](#license)
5858
* [Examples](#examples)
5959

@@ -454,8 +454,8 @@ Send an info message
454454
res.send("You take use of your session cookie " + count + " times.");
455455
});
456456
```
457-
## Local Variables
458-
Java-express also supports to save and read local variables over the Express instance:
457+
## Global Variables
458+
Java-express also supports to save and read global variables over the Express instance:
459459
Example:
460460
```java
461461
app.set("my-data", "Hello World");

0 commit comments

Comments
 (0)