You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contributing.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Contributing
2
2
3
-
We love contributions! There's [lots to do on Kotlin](https://youtrack.jetbrains.com/issues/KT) and on the
3
+
We love contributions! There is [a lot to do on Kotlin](https://youtrack.jetbrains.com/issues/KT) and on the
4
4
[standard library](https://youtrack.jetbrains.com/issues/KT?q=%23Kotlin%20%23Unresolved%20and%20(links:%20KT-2554,%20KT-4089%20or%20%23Libraries)) so why not chat with us
5
5
about what you're interested in doing? Please join the #kontributors channel in [our Slack chat](http://slack.kotlinlang.org/)
6
6
and let us know about your plans.
@@ -12,7 +12,7 @@ Currently only committers can assign issues to themselves so just add a comment
12
12
A nice gentle way to contribute would be to review the [standard library docs](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
13
13
and find classes or functions which are not documented very well and submit a patch.
14
14
15
-
In particular it'd be great if all functions included a nice example of how to use it such as for the
15
+
In particular, it'd be great if all functions included a nice example of how to use it such as for the
This is implemented using the [`@sample`](https://github.com/JetBrains/kotlin/blob/1.1.0/libraries/stdlib/src/kotlin/collections/Maps.kt#L91)
18
18
macro to include code from a test function. The benefits of this approach are twofold; First, the API's documentation is improved via beneficial examples that help new users and second, the code coverage is increased.
@@ -26,7 +26,7 @@ If you want to contribute a new language feature, it is important to discuss it
26
26
## Submitting patches
27
27
28
28
The best way to submit a patch is to [fork the project on GitHub](https://help.github.com/articles/fork-a-repo/) and then send us a
29
-
[pull request](https://help.github.com/articles/creating-a-pull-request/) via [GitHub](https://github.com).
29
+
[pull request](https://help.github.com/articles/creating-a-pull-request/)to the `master` branch via [GitHub](https://github.com).
30
30
31
31
If you create your own fork, it might help to enable rebase by default
32
32
when you pull by executing
@@ -39,7 +39,7 @@ which will help keep your pull request simple and easy to apply.
39
39
## Intention/QuickFix/Inspection
40
40
41
41
Please read the [Intention/QuickFix/Inspection Quick Notes](intentions_inspections_quickfixes.md) if you are
42
-
going to implement inspection, intention or add a quick fix.
42
+
going to implement an inspection or intention or add a quick fix.
0 commit comments