Skip to content

Commit 742e039

Browse files
Amber ParkerMarcin Sedlak-Jakubowski
Amber Parker
authored and
Marcin Sedlak-Jakubowski
committed
Changing use of normal
1 parent bc5903a commit 742e039

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

doc/development/gitaly.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Please raise an issue in the GitLab CE or EE repositories to report the issue. I
116116
~performance ~"technical debt". Please ensure that the issue contains the full stack trace and error message of the
117117
`TooManyInvocationsError`. Also include any known failing tests if possible.
118118

119-
Isolate the source of the n+1 problem. This is normally a loop that results in Gitaly being called for each
119+
Isolate the source of the n+1 problem. This is usually a loop that results in Gitaly being called for each
120120
element in an array. If you are unable to isolate the problem, please contact a member
121121
of the [Gitaly Team](https://gitlab.com/groups/gl-gitaly/group_members) for assistance.
122122

@@ -152,7 +152,7 @@ end
152152

153153
## Running tests with a locally modified version of Gitaly
154154

155-
Normally, GitLab CE/EE tests use a local clone of Gitaly in
155+
Usually, GitLab CE/EE tests use a local clone of Gitaly in
156156
`tmp/tests/gitaly` pinned at the version specified in
157157
`GITALY_SERVER_VERSION`. The `GITALY_SERVER_VERSION` file supports also
158158
branches and SHA to use a custom commit in [the repository](https://gitlab.com/gitlab-org/gitaly).

doc/development/graphql_guide/batchloader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ you do so, you do not need to manage the lifecycle of lazy values yourself, and
161161
you are assured accurate results.
162162

163163
GraphQL fields that return lazy values may need these values forced in tests.
164-
Forcing refers to explicit demands for evaluation, where this would normally
164+
Forcing refers to explicit demands for evaluation, where this would usually
165165
be arranged by the framework.
166166

167167
You can force a lazy value with the `GraphqlHelpers#batch_sync` method available in [GraphQLHelpers](https://gitlab.com/gitlab-org/gitlab/-/blob/master/spec/support/helpers/graphql_helpers.rb), or by using `Gitlab::Graphql::Lazy.force`. For example:

doc/development/internal_analytics/service_ping/implement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ By default, it comes with a fully configured Prometheus service that is set up t
783783
However, it has the following limitations:
784784

785785
- It does not run a `gitlab-exporter` instance, so several `process_*` metrics from services such as Gitaly may be missing.
786-
- While it runs a `node_exporter`, `docker-compose` services emulate hosts, meaning that it normally reports itself as not associated
786+
- While it runs a `node_exporter`, `docker-compose` services emulate hosts, meaning that it usually reports itself as not associated
787787
with any of the other running services. That is not how node metrics are reported in a production setup, where `node_exporter`
788788
always runs as a process alongside other GitLab components on any given node. For Service Ping, none of the node data would therefore
789789
appear to be associated to any of the services running, because they all appear to be running on different hosts. To alleviate this problem, the `node_exporter` in GCK was arbitrarily "assigned" to the `web` service, meaning only for this service `node_*` metrics appears in Service Ping.

doc/development/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Finished in 18.19 seconds (files took 4.8 seconds to load)
217217
```
218218

219219
You can limit the specs that are run by passing any arguments `RSpec` would
220-
normally take.
220+
usually take.
221221

222222
### Using Stackprof in production
223223

doc/development/sidekiq/idempotent_jobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ end
156156

157157
## Setting the deduplication time-to-live (TTL)
158158

159-
Deduplication depends on an idempotent key that is stored in Redis. This is normally
159+
Deduplication depends on an idempotent key that is stored in Redis. This is usually
160160
cleared by the configured deduplication strategy.
161161

162162
However, the key can remain until its TTL in certain cases like:

doc/policy/maintenance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ accessible.
102102

103103
### Backporting to older releases
104104

105-
Backporting to more than one stable release is normally reserved for [security releases](#security-releases).
105+
Backporting to more than one stable release is usually reserved for [security releases](#security-releases).
106106
In some cases, however, we may need to backport *a bug fix* to more than one stable
107107
release, depending on the severity of the bug.
108108

doc/user/project/file_lock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ permissions to the project:
147147
git lfs unlock --id=123 --force
148148
```
149149

150-
You can normally push files to GitLab whether they're locked or unlocked.
150+
You can push files to GitLab whether they're locked or unlocked.
151151

152152
NOTE:
153153
Although multi-branch file locks can be created and managed through the Git LFS

doc/user/project/releases/release_evidence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Evidence collection snapshots are visible on the Releases page, along with the t
9797
9898
When you create a release, if [job artifacts](../../../ci/yaml/index.md#artifactsreports) are included in the last pipeline that ran, they are automatically included in the release as release evidence.
9999

100-
Although job artifacts normally expire, artifacts included in release evidence do not expire.
100+
Although job artifacts usually expire, artifacts included in release evidence do not expire.
101101

102102
To enable job artifact collection you must specify both:
103103

0 commit comments

Comments
 (0)