2020-01-22 20:32:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!--
|
2019-09-05 08:11:23 +00:00
|
|
|
|
2020-02-09 14:41:19 +00:00
|
|
|
Please title your PR as follows: `time: fix foo bar`.
|
2019-12-01 09:50:13 +00:00
|
|
|
Always start with the thing you are fixing, then describe the fix.
|
2019-06-26 13:54:58 +00:00
|
|
|
Don't use past tense (e.g. "fixed foo bar").
|
2019-06-26 11:42:56 +00:00
|
|
|
|
|
|
|
Explain what your PR does and why.
|
2019-06-26 11:39:38 +00:00
|
|
|
|
2019-06-29 14:50:13 +00:00
|
|
|
If you are adding a new function, please document it and add tests:
|
|
|
|
|
|
|
|
```
|
|
|
|
// foo does foo and bar
|
|
|
|
fn foo() {
|
|
|
|
|
|
|
|
// file_test.v
|
|
|
|
fn test_foo() {
|
|
|
|
assert foo() == ...
|
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-09-29 01:28:57 +00:00
|
|
|
If you are fixing a bug, please add a test that covers it.
|
|
|
|
|
2021-01-17 14:04:08 +00:00
|
|
|
Before submitting a PR, please run `v test-all` .
|
2020-09-07 11:48:15 +00:00
|
|
|
See also `TESTS.md`.
|
2019-06-26 11:39:38 +00:00
|
|
|
|
2019-06-26 11:53:42 +00:00
|
|
|
I try to process PRs as soon as possible. They should be handled within 24 hours.
|
|
|
|
|
2019-06-26 14:43:12 +00:00
|
|
|
Applying labels to PRs is not needed.
|
|
|
|
|
2019-06-26 11:39:38 +00:00
|
|
|
Thanks a lot for your contribution!
|
2020-01-22 20:32:41 +00:00
|
|
|
|
2020-02-09 14:41:19 +00:00
|
|
|
-->
|