mirror of https://gitee.com/bigwinds/arangodb
fixed errors in about files
This commit is contained in:
parent
4d04853597
commit
d5a868079f
|
@ -16,9 +16,9 @@ Please follow these guidelines if you want to contribute to ArangoDB:
|
||||||
* the "devel" branch is normally used for new features
|
* the "devel" branch is normally used for new features
|
||||||
* bug fixes should be done in the "devel" first, before being applied to master or other branches
|
* bug fixes should be done in the "devel" first, before being applied to master or other branches
|
||||||
* If missing, install the required prerequisites. They are listed [here](https://github.com/triAGENS/ArangoDB/wiki/Compiling).
|
* If missing, install the required prerequisites. They are listed [here](https://github.com/triAGENS/ArangoDB/wiki/Compiling).
|
||||||
* configure and make your local clone. If you intend to modify the parser files, please make sure to active the --enable-maintainer-mode configure option. In this case, you also need to have Python installed.
|
* configure and make your local clone. If you intend to modify the parser files, please make sure to activate the --enable-maintainer-mode configure option. In this case, you also need to have Python installed.
|
||||||
* Make sure the unmodified clone works locally before making any code changes. You can do so by running the included test suite (i.e. make unittests)
|
* Make sure the unmodified clone works locally before making any code changes. You can do so by running the included test suite (i.e. make unittests)
|
||||||
* If you intend to do documentation changes, you also must install Doxygen in any recent version.
|
* If you intend to do documentation changes, you also must install Doxygen in the most recent version.
|
||||||
|
|
||||||
## Making Changes
|
## Making Changes
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ For more in-depth information
|
||||||
## Compilation
|
## Compilation
|
||||||
|
|
||||||
Please check the
|
Please check the
|
||||||
[Installation Manual](http://www.arangodb.org/manuals/1.0.0/InstallManual.html)
|
[Installation Manual](http://www.arangodb.org/manuals/current/InstallManual.html)
|
||||||
for installation and compilation instructions.
|
for installation and compilation instructions.
|
||||||
|
|
||||||
### Mac OS X Hints
|
### Mac OS X Hints
|
||||||
|
@ -72,7 +72,7 @@ Start the shell in another windows:
|
||||||
arangosh> db.examples.save({ Hallo: "World" });
|
arangosh> db.examples.save({ Hallo: "World" });
|
||||||
{"error":false,"_id":"106097/2333739","_rev":2333739}
|
{"error":false,"_id":"106097/2333739","_rev":2333739}
|
||||||
|
|
||||||
arangosh> db.examples.all();
|
arangosh> db.examples.all().toArray();
|
||||||
[{ _id : "82883/1524675", _rev : 1524675, Hallo : "World" }]
|
[{ _id : "82883/1524675", _rev : 1524675, Hallo : "World" }]
|
||||||
|
|
||||||
## Caveat
|
## Caveat
|
||||||
|
|
Loading…
Reference in New Issue