Skip to content

Commit

Permalink
Remove methods that are no longer existing
Browse files Browse the repository at this point in the history
  • Loading branch information
harikt committed Sep 23, 2023
1 parent 84be822 commit 4ce0d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ Using `getFlash()` returns only the values that are available now from having be

#### Keeping and Clearing Flash Values

Sometimes we will want to keep the flash values in the current request for the next request. We can do so on a per-segment basis by calling the _Segment_ `keepFlash()` method, or we can keep all flashes for all segments by calling the _Session_ `keepFlash()` method.
Sometimes we will want to keep the flash values in the current request for the next request. We can do so on a per-segment basis by calling the _Segment_ `keepFlash()` method.

Similarly, we can clear flash values on a per-segment basis or a session-wide bases. Use the `clearFlash()` method on the _Segment_ to clear flashes just for that segment, or the same method on the _Session_ to clear all flash values for all segments.
Similarly, we can clear flash values just for that _Segment_ with `clearFlash()` method.

### Lazy Session Starting

Expand Down

0 comments on commit 4ce0d3f

Please sign in to comment.