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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-02-17 19:07:35 +0300
committerDimitris Apostolou <dimitris.apostolou@icloud.com>2022-02-17 19:07:35 +0300
commitcea51e4436962b5c533027cf9e771027f1dc172b (patch)
treeda5d2aa1bb8752abd9e6076cb24d37f2c2857e57
parent9edc6f3cc125ebb1cce81475884fa033770fe16e (diff)
Fix typos
-rw-r--r--content/assets/stylesheets/_variables.scss4
-rw-r--r--doc/docsearch.md2
-rw-r--r--dockerfiles/Dockerfile.bootstrap2
-rw-r--r--lib/gitlab/symlinks_converter.rb4
4 files changed, 6 insertions, 6 deletions
diff --git a/content/assets/stylesheets/_variables.scss b/content/assets/stylesheets/_variables.scss
index 0601d14e..5b82d005 100644
--- a/content/assets/stylesheets/_variables.scss
+++ b/content/assets/stylesheets/_variables.scss
@@ -39,10 +39,10 @@ $gds-black: #000;
// Blue palette
$gds-blue-600: #1b69b6;
-// Purple palatte
+// Purple palette
$gds-purple-900: #2f2a6b;
-// Indigo palatte
+// Indigo palette
$gds-indigo-100: #dbdbf8;
$gds-indigo-800: #393982;
//// end of GitLab Design System's colors ////
diff --git a/doc/docsearch.md b/doc/docsearch.md
index 07081bba..0188d352 100644
--- a/doc/docsearch.md
+++ b/doc/docsearch.md
@@ -41,7 +41,7 @@ there's one file to edit:
## Navigate Algolia as a GitLab member
GitLab members can access Algolia's dashboard with the credentials that are
-stored in 1Password (seach for Algolia). After you log in, you can visit:
+stored in 1Password (search for Algolia). After you log in, you can visit:
- The index dashboard
- The Algolia crawler
diff --git a/dockerfiles/Dockerfile.bootstrap b/dockerfiles/Dockerfile.bootstrap
index 9dfdd857..65c1483f 100644
--- a/dockerfiles/Dockerfile.bootstrap
+++ b/dockerfiles/Dockerfile.bootstrap
@@ -1,4 +1,4 @@
-# This is the Nanoc boostrap Dockerfile which builds an image that contains
+# This is the Nanoc bootstrap Dockerfile which builds an image that contains
# all Nanoc's runtime dependencies and gems.
#
diff --git a/lib/gitlab/symlinks_converter.rb b/lib/gitlab/symlinks_converter.rb
index d0089338..6444cc5b 100644
--- a/lib/gitlab/symlinks_converter.rb
+++ b/lib/gitlab/symlinks_converter.rb
@@ -1,6 +1,6 @@
module Gitlab
class SymlinksConverter
- EXTENTIONS = %w[png jpg gif svg].freeze
+ EXTENSIONS = %w[png jpg gif svg].freeze
def initialize(config, items)
@config = config
@@ -19,7 +19,7 @@ module Gitlab
next unless id.to_s.start_with?('/ee/')
- if EXTENTIONS.include?(id.ext)
+ if EXTENSIONS.include?(id.ext)
file_path = File.join(config.fetch(:content_dir), id.to_s)
real_path = Pathname.new(file_path).realpath.to_s
symlink = File.join(config.output_dir, id.to_s)