Skip to content

Commit

Permalink
Fix typos in docs (asreview#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterLombaers authored Dec 9, 2020
1 parent 4ee16d4 commit 71af65a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Navigate to `asreview/webapp` and install npm.
cd asreview/webapp
npm install

The user interface is written in [React][2]. First, start a development server with npm. This serves is used for React development.
The user interface is written in [React][2]. First, start a development server with npm. This server is used for React development.

npm start

Expand Down
2 changes: 1 addition & 1 deletion asreview/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def main():
raise ValueError(
f"Plugin with entry point {entry.name} could not be loaded.")

# Print help message if subcommand not given of incorrect
# Print help message if subcommand not given or incorrect
else:

# format the available subcommands
Expand Down
2 changes: 1 addition & 1 deletion docs/source/API/extensions_dev.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class method ``execute``.
extension_name = "asreview-example" # Name of the extension
version = "1.0" # Version of the extension in x.y(.z) format.
def execute(self, argv)
def execute(self, argv):
pass # Implement your functionality here.
It is strongly recommended to define the attributes ``description``,
Expand Down
2 changes: 1 addition & 1 deletion docs/source/API/overview_cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ shows the available interfaces for interacting with the ASReview software:
.. figure:: ../../figures/asreview_api.png
:alt: ASReview API

- The REST API is used a Flask REST API to provide a method to let the React
- The REST API uses a Flask REST API to provide a method to let the React
front-end communicate with the backend and algorithms. The REST API is not
documented at the moment and should be considered 'internal use only'.
- The :doc:`cli` is an interface to open ASReview LAB, to run
Expand Down

0 comments on commit 71af65a

Please sign in to comment.