diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c1ac1ca497..f3685f9f57 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ Appwrite uses PHPs Composer for managing dependencies on the server-side and JS Appwrite is following the PHP-FIG standards. Currently, we are using both PSR-0 and PSR-4 for coding standards and autoloading standards. Soon we will also review the project for support with PSR-12 (Extended Coding Style). -We use prettier for our JS coding standards and for auto-formmating our code. +We use prettier for our JS coding standards and for auto-formatting our code. ## Scalability, Speed and Performance @@ -83,9 +83,9 @@ Adding a new dependency should have vital value on the product with minimum poss ## Introducing New Features -We whould 💖 you to contribute to Appwrite, but we whould also like to make sure Appwrite is as great as possible and loyal to its vision and mission statement 🙏. +We would 💖 you to contribute to Appwrite, but we would also like to make sure Appwrite is as great as possible and loyal to its vision and mission statement 🙏. -For us to find the right balance, please open an issue explaining your ideas before intoducing a new pull requests. +For us to find the right balance, please open an issue explaining your ideas before introducing a new pull requests. This will allow the Appwrite community to have sufficient discussion about the new feature value and how it fits in the product roadmap and vision. @@ -121,6 +121,6 @@ Before running the command make sure you have proper write permissions to Appwri ## Tutorials -From time to time our team will add tutorials that will help contributers find there way in the Appwrite source code. Below is a list of currently available tutorials: +From time to time our team will add tutorials that will help contributors find there way in the Appwrite source code. Below is a list of currently available tutorials: * [Adding Support for a New OAuth Provider](./docs/AddOAuthProvider.md) \ No newline at end of file diff --git a/README.md b/README.md index b3e68cb946..87fc45c0a1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Appwrite is a simple self-hosted backend server for web and mobile developers with a shiny dashboard and a very easy to use REST API. -Appwrite API services aims to make developers life a lot easier by hiding the complexity of common and repetitve software development tasks. +Appwrite API services aims to make developers life a lot easier by hiding the complexity of common and repetitive software development tasks. Using Appwrite you can easily manage user authentication with multiple sign-in methods, database for storing and querying user and teams data, storage and file management, image manipulation and cropping, scheduled cron tasks and many other features to help you get more results in faster times and with a lot less code. @@ -39,7 +39,7 @@ docker-compose up -d --remove-orphans Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please notice that on non-linux native hosts the server might take a few minutes to start after installation completes. -For advanced, production and custon installation check out our Docker [enviornemnt variables](/docs/EnviornementVariables.md) docs. +For advanced, production and custom installation check out our Docker [environment variables](/docs/EnviornementVariables.md) docs. ### Changing Port Number diff --git a/app/sdks/php/docs/locale.md b/app/sdks/php/docs/locale.md index 7635546481..e977fa99cf 100644 --- a/app/sdks/php/docs/locale.md +++ b/app/sdks/php/docs/locale.md @@ -38,5 +38,5 @@ GET https://appwrite.test/v1/locale/countries/phones GET https://appwrite.test/v1/locale/currencies ``` -** List of all currencies, including currency symol, name, plural, and decimal digits for all major and minor currencies. You can use the locale header to get the data in supported language. ** +** List of all currencies, including currency symbol, name, plural, and decimal digits for all major and minor currencies. You can use the locale header to get the data in supported language. ** diff --git a/docs/AddOAuthProvider.md b/docs/AddOAuthProvider.md index b25e25195b..290f2a91df 100644 --- a/docs/AddOAuthProvider.md +++ b/docs/AddOAuthProvider.md @@ -18,11 +18,11 @@ The first step in adding a new OAuth provider is to list it in providers config ./app/config/providers.php ``` -Make sure to fill all data needed and that your provider array key name is in camelcase format and has no spaces or special characters. +Make sure to fill all data needed and that your provider array key name is in camelCase format and has no spaces or special characters. ### Add Provider Logo -Add a logo image to your new provider in this path: ./public/images/oauth. Your logo should be a png 100X100px file with the name ofyour provider (all lowercase). Please make sure to leave about 20px padding around the logo to be consistent with other logos. +Add a logo image to your new provider in this path: ./public/images/oauth. Your logo should be a png 100×100px file with the name of your provider (all lowercase). Please make sure to leave about 20px padding around the logo to be consistent with other logos. ### Add Provider Class