Skip to content

Commit

Permalink
Fix spelling (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref authored Aug 30, 2024
1 parent 36baafe commit 58fc8bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWERCASE)
# Enable explicit static linking of SSL because of generic Linux binary.
set(MGCONSOLE_STATIC_SSL OFF CACHE STRING "Statically link SSL")

# Set default instalation directory to '/usr'
# Set default installation directory to '/usr'
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
# '/usr' is a special case, for more details see:
# https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html#special-cases
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ change this location, use `-DCMAKE_INSTALL_PREFIX` option when running CMake.

NOTE: If you have issues compiling `mgconsole` using your compiler, please try to use
[Memgraph official toolchain](https://memgraph.notion.site/Toolchain-37c37c84382149a58d09b2ccfcb410d7).
In case you encouner any problem, please create
[a new Github issue](https://github.com/memgraph/mgconsole/issues/new).
In case you encounter any problem, please create
[a new GitHub issue](https://github.com/memgraph/mgconsole/issues/new).

## Example usage

Expand Down Expand Up @@ -181,4 +181,4 @@ special care is required:
- please use only import statements using simple MATCH, CREATE, MERGE
statements.

If you encounter any issue, please create a new [mgconsole Github issue](https://github.com/memgraph/mgconsole/issues).
If you encounter any issue, please create a new [mgconsole GitHub issue](https://github.com/memgraph/mgconsole/issues).
2 changes: 1 addition & 1 deletion src/utils/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ struct BatchResult {
};

// Depends on the global static string because of ...; MATCH
// The extra part is perserved for the next GetQuery call
// The extra part is preserved for the next GetQuery call
std::optional<Query> GetQuery(Replxx *replxx_instance, bool collect_info = false);

QueryResult ExecuteQuery(mg_session *session, const std::string &query);
Expand Down

0 comments on commit 58fc8bd

Please sign in to comment.