branch: elpa/projectile
commit 3a285c000def91cec7c43f2f77fb0bade908950e
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
[Docs] Move some text around
---
doc/modules/ROOT/pages/contributing.adoc | 55 ++++++++++++++++----------------
1 file changed, 27 insertions(+), 28 deletions(-)
diff --git a/doc/modules/ROOT/pages/contributing.adoc
b/doc/modules/ROOT/pages/contributing.adoc
index c7c32e27e6..c7b2401c80 100644
--- a/doc/modules/ROOT/pages/contributing.adoc
+++ b/doc/modules/ROOT/pages/contributing.adoc
@@ -22,8 +22,33 @@ isn't already fixed or caused by interactions with other
packages.
Patches in any form are always welcome! GitHub pull requests are even better!
:-)
Before submitting a patch or a pull request make sure all tests are
-passing and that your patch is in line with the
https://github.com/bbatsov/projectile/blob/master/CONTRIBUTING.md[contribution
-guidelines].
+passing and that your patch is in line with the
https://github.com/bbatsov/projectile/blob/master/CONTRIBUTING.md[contribution
guidelines].
+
+== Running the tests in batch mode
+
+[source,sh]
+----
+$ cd /path/to/projectile
+$ eldev test
+----
+
+If you need to make sure dependencies are at the latest version:
+
+[source,sh]
+----
+$ eldev update
+----
+
+Run all tests with Projectile installed as an Emacs package
+(i.e. byte-compiled and all that; this won't affect your normal Emacs
+though):
+
+[source,sh]
+----
+$ eldev -p test
+----
+
+Tests should run fine in `shell-mode` or `term-mode`. It's also possible to
use kbd:[M-x] `compile` (or `helm-make`).
== Documentation
@@ -85,29 +110,3 @@ You can support the development of Projectile via
https://www.paypal.me/bbatsov[PayPal],
https://www.patreon.com/bbatsov[Patreon] and
https://github.com/sponsors/bbatsov[GitHub Sponsors].
-
-== Running the tests in batch mode
-
-[source,sh]
-----
-$ cd /path/to/projectile
-$ eldev test
-----
-
-If you need to make sure dependencies are at the latest version:
-
-[source,sh]
-----
-$ eldev update
-----
-
-Run all tests with Projectile installed as an Emacs package
-(i.e. byte-compiled and all that; this won't affect your normal Emacs
-though):
-
-[source,sh]
-----
-$ eldev -p test
-----
-
-Tests should run fine in `shell-mode` or `term-mode`. It's also possible to
use kbd:[M-x] `compile` (or `helm-make`).