Skip to content

Commit

Permalink
Merge pull request #664 from jsoref/spelling
Browse files Browse the repository at this point in the history
Spelling
  • Loading branch information
alejandrohdezma authored Jan 3, 2025
2 parents b140894 + 6fc8c35 commit fd4ecd6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ When using the `github-app-*` inputs, Scala Steward will always retrieve the lis

<details><summary><b>Update one or more specific branches</b></summary><br/>

> **Important!** This input is only used when using the `github-repository` input (see the "Updating a specific repository" guide). For cases where the `repos-file` input is used (see the "Update specific repositories (listed on a file)" guide), you should follow the instructions [here](https://github.com/scala-steward-org/scala-steward/blob/main/docs/faq.md#can-scala-steward-update-multiple-branches-in-a-repository).
> **Important!** This input is only used when using the `github-repository` input (see the "Updating a specific repository" guide). For cases where the `repos-file` input is used (see the "Update specific repositories (listed on a file)" guide), you should follow the [instructions to update multiple branches in a repository](https://github.com/scala-steward-org/scala-steward/blob/main/docs/faq.md#can-scala-steward-update-multiple-branches-in-a-repository).

> **This input won't have any effect when using a GitHub App for listing the repositories to update.**

Expand Down Expand Up @@ -724,5 +724,5 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

[github-app-personal]: https://github.com/settings/apps/new?name=scala-steward&description=Github%20App%20to%20facilitate%20running%20Scala%20Steward%20against%20my%20repositories&url=https://github.com/scala-steward-org/scala-steward&public=false&webhook_active=false&pull_requests=write&contents=write
[github-app-organization]: https://github.com/organizations/my_org/settings/apps/new?name=scala-steward&description=Github%20App%20to%20facilitate%20running%20Scala%20Steward%20against%20my%20repositories&url=https://github.com/scala-steward-org/scala-steward&public=false&webhook_active=false&pull_requests=write&contents=write
[github-app-personal]: https://github.com/settings/apps/new?name=scala-steward&description=GitHub%20App%20to%20facilitate%20running%20Scala%20Steward%20against%20my%20repositories&url=https://github.com/scala-steward-org/scala-steward&public=false&webhook_active=false&pull_requests=write&contents=write
[github-app-organization]: https://github.com/organizations/my_org/settings/apps/new?name=scala-steward&description=GitHub%20App%20to%20facilitate%20running%20Scala%20Steward%20against%20my%20repositories&url=https://github.com/scala-steward-org/scala-steward&public=false&webhook_active=false&pull_requests=write&contents=write
2 changes: 1 addition & 1 deletion src/action/pre.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {HealthCheck} from '../modules/healthcheck'
import * as mill from '../modules/mill'

/**
* Runs the action pre-requisites code. In order it will do the following:
* Runs the action prerequisites code. In order it will do the following:
*
* - Check connection with Maven Central
* - Install Coursier
Expand Down
2 changes: 1 addition & 1 deletion src/core/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class NonEmptyString {
}

/**
* Creates a `NonEmptyString` from a `string`. Returns `undefined` if the string is emtpy.
* Creates a `NonEmptyString` from a `string`. Returns `undefined` if the string is empty.
*/
export function nonEmpty(string: string): NonEmptyString | undefined {
return NonEmptyString.from(string)
Expand Down

0 comments on commit fd4ecd6

Please sign in to comment.