Skip to content

Commit 4919b10

Browse files
committedMay 17, 2018
Minor changes to README.md and CONTRIBUTING.md.
1 parent b894511 commit 4919b10

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎CONTRIBUTING.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,34 @@ First, we want to thank you for your interest in contributing to BLIS! Please re
88

99
* If you can't find an open issue addressing the problem, please feel free to [open a new one](https://github.com/flame/blis/issues/new). Some things to keep in mind as you create your issue:
1010
* Be sure to include a **meaningful title**. Aim for a title that is neither overly general nor overly specific.
11-
* Putting some time into writing a **clear description** will help us understand your bug, how you found it, and the conditions under which you discovered it.
12-
* You are welcome to include the BLIS version number (e.g. 0.3.2-15) if you wish, but please supplement it with the **actual git commit number** corresponding to the code that exhibits your behavior (the first 7-8 hex digits is fine).
13-
* Unless you are confident that it's not relevant, it's usually recommended that you **tell us how you configured BLIS** and **about your environment in general**. Your hardware microarchitecture, OS, compiler, `configure` options, configuration target are all good examples of things to you may wish to include.
11+
* Putting some time into writing a **clear description** will help us understand your bug and how you found it.
12+
* You are welcome to include the BLIS version number (e.g. 0.3.2-15) if you wish, but please supplement it with the **actual git commit number** corresponding to the code that exhibits your reported behavior (the first seven or eight hex digits is fine).
13+
* Unless you are confident that it's not relevant, it's usually recommended that you **tell us how you configured BLIS** and **about your environment in general**. Your hardware microarchitecture, OS, compiler (including version), `configure` options, configuration target are all good examples of things to you may wish to include. If the bug involves elements of the build system such as bash or python functionality, please include those versions numbers, too.
1414
* If your bug involves behavior observed after linking to BLIS and running an application, please provide a minimally illustrative **code sample** that developers can run to (hopefully) reproduce the error or other concerning behavior.
1515

1616
#### **Did you write a patch that fixes a bug?**
1717

18-
If so, great, and thanks for your efforts! Please open a new GitHub pull request with the patch.
18+
If so, great, and thanks for your efforts! Please submit a new GitHub [pull request](https://github.com/flame/blis/pulls) with the patch.
1919

2020
* Ensure the PR description clearly describes the problem and solution. Include any relevant issue numbers, if applicable.
2121

2222
* Please limit your PR to addressing one issue at a time. For example, if you are fixing a bug and in the process you find a second, unrelated bug, please open a separate PR for the second bug (or, if the bugfix to the second bug is not obvious, you can simply open an [issue](https://github.com/flame/blis/issues/new) for the second bug).
2323

24-
* Before submitting new code, please read the [CodingConventions wiki](https://github.com/flame/blis/wiki/CodingConventions) guide to learn more about our preferred coding conventions. (It's unlikely that we will turn away your contributed code due to mismatched coding styles, but it will be **highly** appreciated by project maintainers since it will save them the time of digressing from their work to reformat your code.)
24+
* Before submitting new code, please read the [coding conventions](https://github.com/flame/blis/wiki/CodingConventions) guide to learn more about our preferred coding conventions. (It's unlikely that we will turn away your contributed code due to mismatched coding styles, but it will be **highly** appreciated by project maintainers since it will save them the time of digressing from their work--whether now or later--to reformat your code.)
2525

2626
#### **Did you fix whitespace or reformat code?**
2727

2828
Unlike some other projects, if you find code that does not abide by the project's [coding conventions](https://github.com/flame/blis/wiki/CodingConventions) and you would like to bring that code up to our standards, we will be happy to accept your contribution. Please note in the commit log the fixing of whitespace, formatting, etc. as applicable.
2929

30-
If you are making a more substantial contribution and in the vicinity (i.e., within the same file) of the affected code you stumble upon other code that works but could use some trivial changes or reformatting, you may combine the latter into the commit for the former. Just note in your commit log that you also fixed whitespace or applied reformatting.
30+
If you are making a more substantial contribution and in the vicinity of the affected code (i.e., within the same file) you stumble upon other code that works but could use some trivial changes or reformatting, you may combine the latter into the commit for the former. Just note in your commit log that you also fixed whitespace or applied reformatting.
3131

3232
#### **Do you intend to add a new feature or change an existing one?**
3333

3434
That's fine, we are interested to hear your ideas!
3535

36-
* You may wish to run your idea by opening an [issue](https://github.com/flame/blis/issues/new) to describe your new feature, or how an existing feature is not sufficiently general-purpose. This allows you the chance to open a dialogue with other developers, who may provide you with useful feedback.
36+
* You may wish to introduce your idea by opening an [issue](https://github.com/flame/blis/issues/new) to describe your new feature, or how an existing feature is not sufficiently general-purpose. This allows you the chance to open a dialogue with other developers, who may provide you with useful feedback.
3737

38-
* Before submitting new code, please read the [CodingConventions wiki](https://github.com/flame/blis/wiki/CodingConventions) guide to learn more about our preferred coding conventions. (See comments above regarding mismatched coding styles.)
38+
* Before submitting new code, please read the [coding conventions](https://github.com/flame/blis/wiki/CodingConventions) guide to learn more about our preferred coding conventions. (See comments above regarding mismatched coding styles.)
3939

4040
#### **Do you have questions about the source code?**
4141

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ have bug reports, in which case they should open a
233233
Contributing
234234
------------
235235

236-
For information on how to contribute to our project, including preferred [coding conventions](https://github.com/flame/blis/wiki/CodingConventions), please refer to the [CONTRIBUTING.md](https://github.com/flame/blis/blob/master/CONTRIBUTING.md) file in the top-level directory of the BLIS distribution.
236+
For information on how to contribute to our project, including preferred [coding conventions](https://github.com/flame/blis/wiki/CodingConventions), please refer to the [CONTRIBUTING](https://github.com/flame/blis/blob/master/CONTRIBUTING.md) file in the top-level directory of the BLIS distribution.
237237

238238
Citations
239239
---------

0 commit comments

Comments
 (0)
Please sign in to comment.