-
Notifications
You must be signed in to change notification settings - Fork 383
Remove spurious dependencies of test-runner
.
#4427
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
Remove spurious dependencies of test-runner
.
#4427
Conversation
Marked a couple of test dependencies as such in `project/Deps.scala`. The rest of this pull request fixes some typos; the only change to the actual code is in `project/Build.scala`, where the spelling of the names of two private methods - `setDepenency` and `setDepenencyForCurrentBinVersion` - was corrected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this PR. Can I ask how you did this? - seems like you'd need a grammar/spell checker.
Couple of small items if you agree. O.w. LGTM
docs/changelog/0.5.x/0.5.0-RC1.md
Outdated
@@ -570,7 +570,7 @@ Big thanks to everybody who contributed to this release or reported an issue! | |||
- Implement java.net DatagramSocket and DatagramPacket | |||
[\#3614](https://github.com/scala-native/scala-native/pull/3614) | |||
([RustedBones](https://github.com/RustedBones)) | |||
- Fix #3657: Remove a number of java.net defects |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one might be okay as I think it matches the PR and the English is ok.
docs/changelog/0.5.x/0.5.0.md
Outdated
@@ -597,7 +597,7 @@ Big thanks to everybody who contributed to this release or reported an issue! | |||
- Implement java.net DatagramSocket and DatagramPacket | |||
[\#3614](https://github.com/scala-native/scala-native/pull/3614) | |||
([RustedBones](https://github.com/RustedBones)) | |||
- Fix #3657: Remove a number of java.net defects |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too
docs/user/interop.md
Outdated
@@ -177,7 +177,7 @@ name of field. | |||
`int ScalaNativeInit(void);` function is special exported | |||
function that needs to be called before invoking any code defined in | |||
Scala Native. It returns `0` on successful initialization | |||
and non-zero value in the otherwise. | |||
and non-zero value otherwise. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and non-zero value otherwise. | |
and a non-zero value otherwise. |
@@ -57,7 +57,7 @@ private[zip] object ZipByteConversions { | |||
* may be available. | |||
* | |||
* Scala Native currently (2024-03) uses Unicode version 13.0. | |||
* Unicode 15.1 was released in September, 2023. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think "in" is ok for a month but "on" is certainly correct for an exact day.
Marked a couple of test dependencies as such in `project/Deps.scala`. The rest of this pull request fixes some typos; the only change to the actual code is in `project/Build.scala`, where the spelling of the names of two private methods - `setDepenency` and `setDepenencyForCurrentBinVersion` - was corrected.
I ran Code Inspection in IntelliJ IDEA ;)
You are right on all of them! |
Thanks!! |
Marked a couple of test dependencies as such in
project/Deps.scala
.The rest of this pull request fixes some typos; the only change to the actual code is in
project/Build.scala
, where the spelling of the names of two private methods -setDepenency
andsetDepenencyForCurrentBinVersion
- was corrected.