From 850be8c3667ccc17050608dbae634cec8efb8b2a Mon Sep 17 00:00:00 2001 From: 5h4k4r <5h4k4r.b4kr@gmail.com> Date: Wed, 2 Nov 2022 12:02:16 +0300 Subject: [PATCH] Fix typographical errors --- docs/Discovery/documentationGuideline.md | 2 +- .../03-Distributed Computing Specifications/02-Deployment.md | 2 +- .../04-Race Conditions/04-Database Decisions.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Discovery/documentationGuideline.md b/docs/Discovery/documentationGuideline.md index 54579c3..49ccd60 100644 --- a/docs/Discovery/documentationGuideline.md +++ b/docs/Discovery/documentationGuideline.md @@ -103,7 +103,7 @@ Example: |User Story #1| |---|-----| -|Who|Citize| +|Who|Citizen| |What|A citizen needs to attach their national ID to the form.| |Why|Because the auditor needs to check the identity of the citizen that filled the form.| |Priority|Must have| diff --git a/docs/Software Development/03-Distributed Computing Specifications/02-Deployment.md b/docs/Software Development/03-Distributed Computing Specifications/02-Deployment.md index 4c473a4..202caac 100644 --- a/docs/Software Development/03-Distributed Computing Specifications/02-Deployment.md +++ b/docs/Software Development/03-Distributed Computing Specifications/02-Deployment.md @@ -9,7 +9,7 @@ All software at DIT is packaged using Docker and will be running on Kubernetes. ## Dockerfile -The Dockerfile is a standard file that gives out instruction on how to build an image for the source code. Diffberent technology stacks have different base images on the top of which the new image is built. DIT has a local registry for all needed images. The base images used in this Dockerfile must be coming from our local registry. If the on-prem registry does not contain the base images that you need, speak to the Head of DevOps so that they are made available. If it is absolutely necessary to use an image that for some reasons cannot be hosted on our local registry, speak to the Head of DevOps to obtain approval. Otherwise, the change is considered a bug. +The Dockerfile is a standard file that gives out instruction on how to build an image for the source code. Different technology stacks have different base images on the top of which the new image is built. DIT has a local registry for all needed images. The base images used in this Dockerfile must be coming from our local registry. If the on-prem registry does not contain the base images that you need, speak to the Head of DevOps so that they are made available. If it is absolutely necessary to use an image that for some reasons cannot be hosted on our local registry, speak to the Head of DevOps to obtain approval. Otherwise, the change is considered a bug. See also: [Dockerfile reference](https://docs.docker.com/engine/reference/builder/) diff --git a/docs/Software Development/03-Distributed Computing Specifications/04-Race Conditions/04-Database Decisions.md b/docs/Software Development/03-Distributed Computing Specifications/04-Race Conditions/04-Database Decisions.md index 988edb0..ee3b762 100644 --- a/docs/Software Development/03-Distributed Computing Specifications/04-Race Conditions/04-Database Decisions.md +++ b/docs/Software Development/03-Distributed Computing Specifications/04-Race Conditions/04-Database Decisions.md @@ -6,6 +6,6 @@ Always place a unique index on columns are that supposed to contain unique value ## Versioning -It is always a good practice to version records so that is can also comply with the Optimistic Concurrency Control model. This requirement is not forced but it is highly recommended. +It is always a good practice to version records so that they can also comply with the Optimistic Concurrency Control model. This requirement is not forced but it is highly recommended. The version column must be atomically incremented. \ No newline at end of file