Fix naming in how-to guides

Reviewers: buda

Reviewed By: buda

Differential Revision: https://phabricator.memgraph.io/D1627
This commit is contained in:
Ivan Paljak 2018-10-02 16:31:34 +02:00
parent 43436c2534
commit ed335e38ff
5 changed files with 15 additions and 13 deletions

View File

@ -16,10 +16,11 @@ data structures, multi-version concurrency control and asynchronous IO.
* [Analysing TED Talks](tutorials/03_analyzing-TED-talks.md)
* [Graphing the Premier League](tutorials/04_graphing-the-premier-league.md)
* [Exploring the European Road Network](tutorials/05_exploring-the-european-road-network.md)
* [How-to Guides](how_to_guides/01_how-to-guides-overview.md)
* [Import Tools](how_to_guides/02_import-tools.md)
* [Programmatic Querying](how_to_guides/03_programmatic-querying.md)
* [How to Ingest Data Using Kafka](how_to_guides/04_how-to-ingest-data-using-kafka.md)
* [How to](how_to_guides/01_how-to-guides-overview.md)
* [Import Data?](how_to_guides/02_import-data.md)
* [Query Memgraph Programmatically?](how_to_guides/03_query-memgraph-programmatically.md)
* [Ingest Data Using Kafka?](how_to_guides/04_ingest-data-using-kafka.md)
* [Manage User Privileges?](how_to_guides/05_manage-user-privileges.md)
* [Concepts](concepts/01_concepts_overview.md)
* [Storage](concepts/02_storage.md)
* [Graph Algorithms](concepts/03_graph-algorithms.md)
@ -31,9 +32,10 @@ data structures, multi-version concurrency control and asynchronous IO.
* [Indexing](reference_guide/05_indexing.md)
* [Graph Algorithms](reference_guide/06_graph-algorithms.md)
* [Graph Streams](reference_guide/07_graph-streams.md)
* [Dynamic Graph Partitioner](reference_guide/08_dynamic-graph-partitioner.md)
* [Other Features](reference_guide/09_other-features.md)
* [Differences](reference_guide/10_differences.md)
* [Security](reference_guide/08_security.md)
* [Dynamic Graph Partitioner](reference_guide/09_dynamic-graph-partitioner.md)
* [Other Features](reference_guide/10_other-features.md)
* [Differences](reference_guide/11_differences.md)
* [Upcoming Features](upcoming-features.md)
[//]: # (Nothing should go below the contents section)

View File

@ -6,7 +6,7 @@ guide on how to use certain Memgraph feature or solve a particular problem.
So far we have covered the following topics:
* [Import Tools](02_import-tools.md)
* [Programmatic Querying](03_programmatic-querying.md)
* [How to Ingest Data Using Kafka](04_how-to-ingest-data-using-kafka.md)
* [Manage User Privileges](05_manage-user-privileges.md)
* [How to Import Data?](02_import-tools.md)
* [How to Query Memgraph Programmatically?](03_query-memgraph-programmatically.md)
* [How to Ingest Data Using Kafka](04_ingest-data-using-kafka.md)
* [How to Manage User Privileges](05_manage-user-privileges.md)

View File

@ -1,4 +1,4 @@
## Import Tools
## How to Import Data?
Memgraph comes with tools for importing data into the database. Currently,
only import of CSV formatted is supported. We plan to support more formats in

View File

@ -1,4 +1,4 @@
## Programmatic Querying
## How to Query Memgraph Programmatically?
### Supported Languages