Skip to content

Commit

Permalink
Fixing typos (yuzutech#1458)
Browse files Browse the repository at this point in the history
  • Loading branch information
deining authored Mar 10, 2023
1 parent eea3dbf commit dfce464
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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">
<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">
<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)
' 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

0 comments on commit dfce464

Please sign in to comment.