Fix two typos

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alex@openfaas.com>
This commit is contained in:
Alex Ellis (OpenFaaS Ltd) 2024-04-28 13:38:58 +01:00
parent b22cb639fe
commit 5f0fa69c2c
2 changed files with 2 additions and 2 deletions

View File

@ -848,7 +848,7 @@ components:
example: 1337
replicas:
type: number
description: The current minimal ammount of replicas
description: Desired amount of replicas
format: integer
example: 2
availableReplicas:

View File

@ -96,7 +96,7 @@ func TestRead_ScaleZeroDefaultAndOverride(t *testing.T) {
want = true
if config.ScaleFromZero != want {
t.Logf("ScaleFromZero was overriden - should be %v, got: %v", want, config.ScaleFromZero)
t.Logf("ScaleFromZero was overridden - should be %v, got: %v", want, config.ScaleFromZero)
t.Fail()
}