From 0f6c802b012d6e4996ddf2a0ac148e730b58d8ef Mon Sep 17 00:00:00 2001 From: lokson Date: Tue, 25 Apr 2017 03:35:41 +0200 Subject: [PATCH 1/2] Describe fixtures dir in overview --- docs/contributing/codebase-overview.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributing/codebase-overview.md b/docs/contributing/codebase-overview.md index f0eea5e65228a..5dd5ac88a0d99 100644 --- a/docs/contributing/codebase-overview.md +++ b/docs/contributing/codebase-overview.md @@ -66,6 +66,7 @@ After cloning the [React repository](https://github.com/facebook/react), you wil * [`src`](https://github.com/facebook/react/tree/master/src) is the source code of React. **If your change is related to the code, `src` is where you'll spend most of your time.** * [`docs`](https://github.com/facebook/react/tree/master/docs) is the React documentation website. When you change APIs, make sure to update the relevant Markdown files. +* [`examples`](https://github.com/facebook/react/tree/master/fixtures) contains a few small React test applications for contributors. * [`packages`](https://github.com/facebook/react/tree/master/packages) contains metadata (such as `package.json`) for all packages in the React repository. Nevertheless, their source code is still located inside [`src`](https://github.com/facebook/react/tree/master/src). * `build` is the build output of React. It is not in the repository but it will appear in your React clone after you [build it](/react/contributing/how-to-contribute.html#development-workflow) for the first time. From 5220243702d67d7b4df675ce9ecd504fc402652d Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 25 Apr 2017 10:25:17 +0100 Subject: [PATCH 2/2] Fix folder name --- docs/contributing/codebase-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/codebase-overview.md b/docs/contributing/codebase-overview.md index 5dd5ac88a0d99..22b2a96f1873a 100644 --- a/docs/contributing/codebase-overview.md +++ b/docs/contributing/codebase-overview.md @@ -66,7 +66,7 @@ After cloning the [React repository](https://github.com/facebook/react), you wil * [`src`](https://github.com/facebook/react/tree/master/src) is the source code of React. **If your change is related to the code, `src` is where you'll spend most of your time.** * [`docs`](https://github.com/facebook/react/tree/master/docs) is the React documentation website. When you change APIs, make sure to update the relevant Markdown files. -* [`examples`](https://github.com/facebook/react/tree/master/fixtures) contains a few small React test applications for contributors. +* [`fixtures`](https://github.com/facebook/react/tree/master/fixtures) contains a few small React test applications for contributors. * [`packages`](https://github.com/facebook/react/tree/master/packages) contains metadata (such as `package.json`) for all packages in the React repository. Nevertheless, their source code is still located inside [`src`](https://github.com/facebook/react/tree/master/src). * `build` is the build output of React. It is not in the repository but it will appear in your React clone after you [build it](/react/contributing/how-to-contribute.html#development-workflow) for the first time.