Skip to content

Commit 0d4024f

Browse files
authored
Fix typos (#867)
1 parent b5badf0 commit 0d4024f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ All notable changes to this project will be documented in this file.
570570
### Removed
571571

572572
- `stackable-regorule-crd` dependency ([#157]).
573-
- BREAKING: `nodeEnvironment` from CRD. Will default to the `metadata.name` field (can be overriden) ([#183]).
573+
- BREAKING: `nodeEnvironment` from CRD. Will default to the `metadata.name` field (can be overridden) ([#183]).
574574
- BREAKING: Removed `authorization` module from CRD and code and provided the opa bundle via `ConfigMap` directly instead of generating it ([#186]).
575575
- Possibly BREAKING: Removed `query.max-total-memory-per-node` config parameter ([#193]).
576576

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ARG STACKABLE_USER_NAME="stackable"
3737
# "-c": Allows the execution of commands passed as a string
3838
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
3939

40-
# These labels have mostly been superceded by the OpenContainer spec annotations below but it doesn't hurt to include them
40+
# These labels have mostly been superseded by the OpenContainer spec annotations below but it doesn't hurt to include them
4141
# http://label-schema.org/rc1/
4242
LABEL name="Stackable Operator for Trino"
4343
LABEL maintainer="info@stackable.tech"

docs/modules/trino/pages/usage-guide/overrides.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Trino configuration is stored in several files listed below.
1111
The configuration overrides menchanism allows you to customize parameters in these files;
1212
consult the Trino documentation to find out which settings available.
1313

14-
Confiuration overrides are applied like so:
14+
Configuration overrides are applied like so:
1515

1616
[source,yaml]
1717
----

rust/operator-binary/src/controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2148,7 +2148,7 @@ mod tests {
21482148
configOverrides:
21492149
access-control.properties:
21502150
hello-from-role: "true" # only defined here at role level
2151-
foo.bar: "false" # overriden by role group below
2151+
foo.bar: "false" # overridden by role group below
21522152
opa.allow-permission-management-operations: "false" # override value from config
21532153
roleGroups:
21542154
default:

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file includes unstable features, so you need to run "cargo +nightly fmt" to format your code.
2-
# It's also ok to use the stable toolchain by simple running "cargo fmt", but using the nigthly formatter is prefered.
2+
# It's also ok to use the stable toolchain by simple running "cargo fmt", but using the nightly formatter is preferred.
33

44
# https://doc.rust-lang.org/nightly/edition-guide/rust-2024/rustfmt-style-edition.html
55
style_edition = "2024"

tests/templates/kuttl/commons/check-active-workers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def get_connection(username, password, coordinator):
5757

5858
if int(active_workers) != int(expected_workers):
5959
print(
60-
"Missmatch: [expected/active] workers ["
60+
"Mismatch: [expected/active] workers ["
6161
+ str(expected_workers)
6262
+ "/"
6363
+ str(active_workers)

0 commit comments

Comments
 (0)