Skip to content

Commit b803b49

Browse files
dwickernaldenml
andauthored
Fix typos (#1682)
* fix typos * use sbt slash syntax in docs * more documentation typos fix --------- Co-authored-by: Alden Torres <aldenml@cmaster.us>
1 parent d117bfb commit b803b49

28 files changed

Lines changed: 42 additions & 42 deletions

File tree

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
java-version: '${{ matrix.java }}'
8888
cache: sbt
8989
- uses: sbt/setup-sbt@v1
90-
- name: Scritped test
90+
- name: Scripted test
9191
run: sbt -v '${{ matrix.command }}'
9292

9393
scripted-jdk-packager:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- `sbt docker:publishLocal` sporadically builds with the wrong version [\#1164](https://github.com/sbt/sbt-native-packager/issues/1164)
4343
- dockerUpdateLatest doesn't update latest [\#1141](https://github.com/sbt/sbt-native-packager/issues/1141)
4444
- Renaming compiled artifact in package \(feature\) [\#864](https://github.com/sbt/sbt-native-packager/issues/864)
45-
- Overriden `artifactName` produces image with .jar with wrong content [\#638](https://github.com/sbt/sbt-native-packager/issues/638)
45+
- Overridden `artifactName` produces image with .jar with wrong content [\#638](https://github.com/sbt/sbt-native-packager/issues/638)
4646
- Add plugin/support for AWS Elastic Beanstalk Docker environments [\#632](https://github.com/sbt/sbt-native-packager/issues/632)
4747

4848
**Merged pull requests:**

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
## Moderation
3838

3939
These are the policies for upholding our community's standards of conduct in our
40-
communication channels, most notably in sbt-native-packagers’s Github organisation.
40+
communication channels, most notably in sbt-native-packager’s Github organisation.
4141

4242
1. Remarks that violate the sbt-native-packager code of conduct, including
4343
hateful, hurtful, oppressive, or exclusionary remarks, are not allowed.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packaging types, systemloader and service types. Sometimes this means a pull req
88
may take a bit longer, because testing is sometimes hard and tedious.
99

1010
Most of the changes are of a very small nature, but can have a huge impact, so try
11-
to cover the three topis _Code_, _Documentation_ and _Test_ :)
11+
to cover the three topics _Code_, _Documentation_ and _Test_ :)
1212

1313
## Code
1414

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,5 @@ or provide a richer API for a single packaging format.
142142

143143
## Credits ##
144144

145-
- [Josh Suereth](https://twitter.com/jsuereth) for the initial developement
145+
- [Josh Suereth](https://twitter.com/jsuereth) for the initial development
146146
- [Sascha Rinaldi](http://www.imagelab.net/) for the native-packager logo

src/main/scala/com/typesafe/sbt/packager/FileUtil.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ object chmod {
4242
}
4343

4444
/**
45-
* Converts a octal unix permission representation into a java `PosiFilePermissions` compatible string.
45+
* Converts a octal unix permission representation into a java [[PosixFilePermission]] compatible string.
4646
*/
4747
object permissions {
4848

src/main/scala/com/typesafe/sbt/packager/archetypes/TemplateWriter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.typesafe.sbt.packager.archetypes
33
/**
44
* This object provides methods to generate scripts from templates. This involves
55
*
6-
* 1. procesing - replacing a placeholders with actual values
6+
* 1. processing - replacing a placeholders with actual values
77
* 1. TODO: validating - check the script if there are no remaining placeholders
88
*
99
* @example

src/main/scala/com/typesafe/sbt/packager/debian/DebianPlugin.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ object DebianPlugin extends AutoPlugin with DebianNativePackaging {
140140
}
141141
// override and merge with the user defined scripts. Will change in the future
142142
val controlScriptsDir = debianControlScriptsDirectory.value
143-
val overridenScripts = scripts ++ readContent(
143+
val overriddenScripts = scripts ++ readContent(
144144
Seq(
145145
scriptMapping(Names.Prerm, debianMakePrermScript.value, controlScriptsDir),
146146
scriptMapping(Names.Preinst, debianMakePreinstScript.value, controlScriptsDir),
@@ -150,8 +150,8 @@ object DebianPlugin extends AutoPlugin with DebianNativePackaging {
150150
)
151151
// --- legacy ends
152152

153-
// TODO remove the overridenScripts
154-
val content = appendedScripts ++ overridenScripts
153+
// TODO remove the overriddenScripts
154+
val content = appendedScripts ++ overriddenScripts
155155

156156
// apply all replacements
157157
content.mapValues { lines =>
@@ -320,7 +320,7 @@ object DebianPlugin extends AutoPlugin with DebianNativePackaging {
320320
*
321321
* This trait provides a set of helper methods for debian packaging implementations.
322322
*
323-
* Most of the methods are for java 6 file permission handling and debian script adjustements.
323+
* Most of the methods are for java 6 file permission handling and debian script adjustments.
324324
*/
325325
trait DebianPluginLike {
326326

src/main/scala/com/typesafe/sbt/packager/debian/Keys.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package debian
55
import sbt.{*, given}
66
import linux.LinuxPackageMapping
77

8-
/** DEB packaging specifc build targets. */
8+
/** DEB packaging specific build targets. */
99
trait DebianKeys {
1010
// Metadata keys
1111
val debianSection = SettingKey[String]("debian-section", "The section category for this deb file.")

src/main/scala/com/typesafe/sbt/packager/docker/DockerSpotifyClientPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import sbt._
4141
* }}}
4242
*
4343
* The Docker-spotify client is a provided dependency so you have to add it on your own. It brings a lot of
44-
* dependenciesthat could slow your build times. This is the reason the dependency is marked as provided.
44+
* dependencies that could slow your build times. This is the reason the dependency is marked as provided.
4545
*/
4646
object DockerSpotifyClientPlugin extends AutoPlugin {
4747

0 commit comments

Comments
 (0)