Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing typos #1458

Merged
merged 1 commit into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ If you have found a security issue or concern with Kroki please email the mainta

## Expectations

We will do everything we can to communicate in a timely manner and address your concerns, but realize that we do have day jobs and this is an open source project so have a little patience if you don't hear back from us immediatly.
We will do everything we can to communicate in a timely manner and address your concerns, but realize that we do have day jobs and this is an open source project so have a little patience if you don't hear back from us immediately.
2 changes: 1 addition & 1 deletion diagrams.net/assets/stencils/aws/deployment_management.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
<fillstroke/>
</foreground>
</shape>
<shape name="AWS Elastic BeanStalk Applicaton" h="53.89" w="31.1" aspect="variable" strokewidth="inherit">
deining marked this conversation as resolved.
Show resolved Hide resolved
<shape name="AWS Elastic BeanStalk Application" h="53.89" w="31.1" aspect="variable" strokewidth="inherit">
<connections>
<constraint x="0.5" y="0.07" perimeter="0" name="N"/>
<constraint x="0.13" y="1" perimeter="0" name="S"/>
Expand Down
2 changes: 1 addition & 1 deletion diagrams.net/assets/stencils/office/servers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,7 @@
<fillstroke/>
</foreground>
</shape>
<shape aspect="variable" h="59.17" name="Excahnge Client Access Server Role" strokewidth="inherit" w="51.75">
deining marked this conversation as resolved.
Show resolved Hide resolved
<shape aspect="variable" h="59.17" name="Exchange Client Access Server Role" strokewidth="inherit" w="51.75">
<connections/>
<foreground>
<path>
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/setup/pages/configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ In addition, `KROKI_LISTEN` supports UNIX domain sockets by prefixing `unix://`
====
*`KROKI_PORT` is deprecated and will be removed in the future.*

We are deprecating this option because it conflicts with Kubernetes and Docker built-in environnement variables.
We are deprecating this option because it conflicts with Kubernetes and Docker built-in environment variables.
For reference, {url-k8s-environment-variables}[Kubernetes will automatically set the environment variable] `\{SERVICE_NAME}_PORT` to `tcp://1.2.3.4:8000`.
As you might have guessed, if you use `KROKI` as a service name, there's going to be a problem!
In fact, Kroki expects the value of `KROKI_PORT` to be an integer value. +
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/io/kroki/server/service/Plantuml.java
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private static void ignoreInclude(String line, StringBuilder sb, SafeMode safeMo
// one of the folders whitelisted in the include path and thus the include will be resolved as not-found
//
// Effectively only imports that are immediate children of the folders listed in "plantuml.include.path"
// are eligible for inlcude (unless OptionFlags.ALLOW_INCLUDE has been set to true)
// are eligible for include (unless OptionFlags.ALLOW_INCLUDE has been set to true)
sb.append(line).append("\n");
} else if (includeWhitelist.stream().anyMatch(p -> p.matcher(include).matches())) {
sb.append(line).append("\n");
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/resources/c4.puml
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ $elementSkin
' Line breaks
' ##################################

' PlantUML supports no DETERMINISTIC/automatic line breaks of "PlantUML line" (C4 Relashionships)
deining marked this conversation as resolved.
Show resolved Hide resolved
' PlantUML supports no DETERMINISTIC/automatic line breaks of "PlantUML line" (C4 Relationships)
' therefore Rel...() implements an automatic line break based on spaces (like in all other objects).
' If a $type contains \n then these are used (and no automatic space based line breaks are done)
' $REL_TECHN_MAX_CHAR_WIDTH defines the automatic line break position
Expand Down