-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Tweak project-level copy a bit #3337
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Thank you for contributing! | |
|
||
Have a usage question? | ||
====================== | ||
Questions *might* be closed without comment, sometimes we just don't have time for them. Before you ask one, here are some resources to get help first: | ||
The issue tracker isn't the best place for usage questions. This format is not well-suited for Q&A, and questions here don't have as much visibility as they do elsewhere. Before you ask a question, here are some resources to get help first: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I feel like this is a bit more gentle – "you should go to other places because they're better". There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Positive reinforcement is more effective than negative. |
||
|
||
- Do the tutorial: https://github.com/reactjs/react-router-tutorial | ||
- Read the docs: https://github.com/reactjs/react-router/tree/latest/docs | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# react-router [![Travis][build-badge]][build] [![npm package][npm-badge]][npm] | ||
# React Router [![Travis][build-badge]][build] [![npm package][npm-badge]][npm] | ||
|
||
[`react-router`](https://www.npmjs.com/package/react-router) is a complete routing library for [React](https://facebook.github.io/react). | ||
React Router is a complete routing library for [React](https://facebook.github.io/react). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a bunch of copy-editing tweaks; I updated repo description to say "A complete routing library for React" as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What was it before? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "for React.js" |
||
|
||
React Router keeps your UI in sync with the URL. It has a simple API with powerful features like lazy code loading, dynamic route matching, and location transition handling built right in. Make the URL your first thought, not an after-thought. | ||
|
||
|
@@ -10,19 +10,18 @@ React Router keeps your UI in sync with the URL. It has a simple API with powerf | |
### Docs & Help | ||
|
||
- [Tutorial – do this first!](https://github.com/reactjs/react-router-tutorial) | ||
- [Guides and API docs](https://github.com/reactjs/react-router/tree/master/docs) | ||
- [Guides and API docs](/docs) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These links don't need to be fully qualified. npm resolves these correctly as well, e.g. for the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Depending on how we do the branching for 3.0, we might need to make this a fully-qualified URL again to link to the right branch for docs. |
||
- [Troubleshooting guide](https://github.com/reactjs/react-router/blob/master/docs/Troubleshooting.md) | ||
- [Changelog](/CHANGES.md) | ||
- [Stack Overflow](http://stackoverflow.com/questions/tagged/react-router) | ||
- [CodePen boilerplate](http://codepen.io/anon/pen/xwQZdy?editors=001) | ||
Please use for bug reports | ||
- [CodePen boilerplate](http://codepen.io/anon/pen/xwQZdy?editors=001) for bug reports | ||
|
||
**Older Versions:** | ||
|
||
- 0.13.x - [docs](https://github.com/reactjs/react-router/tree/0.13.x/docs/guides) / [code](https://github.com/reactjs/react-router/tree/0.13.x) / [upgrade guide](https://github.com/reactjs/react-router/blob/master/upgrade-guides/v1.0.0.md) | ||
- 1.0.x - [docs](https://github.com/reactjs/react-router/tree/1.0.x/docs) / [code](https://github.com/reactjs/react-router/tree/1.0.x) / [upgrade guide](https://github.com/reactjs/react-router/blob/master/upgrade-guides/v2.0.0.md) | ||
|
||
For questions and support, please visit [our channel on Reactiflux](https://discord.gg/0ZcbPKXt5bYaNQ46) or [Stack Overflow](http://stackoverflow.com/questions/tagged/react-router). The issue tracker is *exclusively* for bug reports and feature requests. | ||
For questions and support, please visit [our channel on Reactiflux](https://discord.gg/0ZcbPKXt5bYaNQ46) or [Stack Overflow](http://stackoverflow.com/questions/tagged/react-router). | ||
|
||
### Browser Support | ||
|
||
|
@@ -120,7 +119,7 @@ render(( | |
), document.body) | ||
``` | ||
|
||
See more in the [Introduction](https://github.com/reactjs/react-router/tree/master/docs/Introduction.md), [Guides](https://github.com/reactjs/react-router/tree/master/docs/guides/README.md), and [Examples](https://github.com/reactjs/react-router/tree/master/examples). | ||
See more in the [Introduction](/docs/Introduction.md), [Guides](/docs/guides/README.md), and [Examples](/examples). | ||
|
||
### Versioning and Stability | ||
|
||
|
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.
Maybe? I think it's okay to ask for test cases when they're helpful, but sometimes it's simple enough to not need a test case.
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.
The pessimist in me says people are going to ignore this no matter what you write.