Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2019-08-27 11:44:07 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-08-27 11:44:07 +0300
commit9c87a3499cc0ad2ffda13b843b5095998b20c0d8 (patch)
treeb725534981de49274323e873098e0a3b790f1bf9 /doc/development/session.md
parenta200715ff5ac6d690c405bc770df33f6d2210a57 (diff)
Update capitalization in /dev docs
Clean up capitalization in /development /gitlab-basics and /install
Diffstat (limited to 'doc/development/session.md')
-rw-r--r--doc/development/session.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/session.md b/doc/development/session.md
index 9edce3dbda0..971795d8816 100644
--- a/doc/development/session.md
+++ b/doc/development/session.md
@@ -17,7 +17,7 @@ When storing values in a session it is best to:
- Use simple primitives and avoid storing objects to avoid marshaling complications.
- Clean up after unneeded variables to keep memory usage in Redis down.
-## Gitlab::Session
+## GitLab::Session
Sometimes you might want to persist data in the session instead of another store like the database. `Gitlab::Session` lets you access this without passing the session around extensively. For example, you could access it from within a policy without having to pass the session through to each place permissions are checked from.