Skip to content

Fix spelling#840

Merged
johanandren merged 25 commits intolightbend:mainfrom
jsoref:spelling
Apr 15, 2026
Merged

Fix spelling#840
johanandren merged 25 commits intolightbend:mainfrom
jsoref:spelling

Conversation

@jsoref
Copy link
Copy Markdown
Contributor

@jsoref jsoref commented Apr 14, 2026

I have read Maintained by

I'm happy to split or drop things if people are interested.

Akka replaced Lightbend, so the CLA link redirects which means you should apply 5808a5d or something very close to it.

The rest are more typical spelling / grammar fixes -- I started on this repository because we use it transitively and I generally send PR contributions to things I/we use. I'm not attached to the corrections, but I find it easier to work w/ code when it doesn't have typos.

@lightbend-cla-validator
Copy link
Copy Markdown
Collaborator

Hi @jsoref,

Thank you for your contribution! We really value the time you've taken to put this together.

We see that you have signed the Akka Contributors License Agreement before, however, the CLA has changed since you last signed it.
Please review the new CLA and sign it before we proceed with reviewing this pull request:

https://www.lightbend.com/contribute/cla

Comment thread .github/workflows/release.yml Outdated
Comment on lines +23 to +31
# Retrieve the Scala SBT public key
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" |
sudo tee /usr/share/keyrings/scala-sbt.asc > /dev/null

# Add the sbt repositories to apt sources
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list

# Import the Scala SBT public key
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" \
| sudo apt-key add -
echo "deb [signed-by=/usr/share/keyrings/scala-sbt.asc] https://repo.scala-sbt.org/scalasbt/debian all main" |
sudo tee /etc/apt/sources.list.d/sbt.list
echo "deb [signed-by=/usr/share/keyrings/scala-sbt.asc] https://repo.scala-sbt.org/scalasbt/debian /" |
sudo tee /etc/apt/sources.list.d/sbt_old.list
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/**
* Like {@link #parseApplicationReplacement()} but allows you to specify a class loader
* ti yse rather than the current context class loader.
* rather than using the current context class loader.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was amusing

Comment thread README.md
Akka Contributor License Agreement online, using your GitHub
account - it takes 30 seconds. You can do this at
https://www.lightbend.com/contribute/cla
https://contribute.akka.io/contribute/cla
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tangentially related, at the top right of this page are two links:

Log in | Register

If you click either link and then click LOGIN WITH GITHUB, you will encounter:

@jsoref
Copy link
Copy Markdown
Contributor Author

jsoref commented Apr 14, 2026

@lightbend-cla-validator for the record, I have signed it again, but you should really fix the link w/ which you respond to use the current URL instead of the old url 😉.

@johanandren
Copy link
Copy Markdown
Collaborator

Please put the build related changes in a separate PR from the spelling ones.

@jsoref jsoref mentioned this pull request Apr 15, 2026
jsoref added 25 commits April 15, 2026 08:11
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Copy link
Copy Markdown
Collaborator

@johanandren johanandren left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@johanandren johanandren merged commit eb46e0e into lightbend:main Apr 15, 2026
3 checks passed
@jsoref jsoref deleted the spelling branch April 15, 2026 13:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants