Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit ef1adbb

Browse files
authored
Merge pull request #112 from sanny-io/typos
Fix some typos.
2 parents f342323 + 9f861f5 commit ef1adbb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/views/docs/debugging.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
<h2><a href="/docs/debugging#devMode" id="devMode">Dev Mode</a></h2>
3636

37-
<p>When moving to dev mode, your server will produce a much more verbose error messages. Instead of getting a general 500 error, you’ll be able to view the exact error that happened on the server, debug the issue further or <a href="https://github.com/appwrite/appwrite/issues/new?body=500%20Error" target="_blank" rel="noopener">report it to the Appwrite team</a>.</p>
37+
<p>When moving to dev mode, your server will produce much more verbose error messages. Instead of getting a general 500 error, you’ll be able to view the exact error that happened on the server, debug the issue further or <a href="https://github.com/appwrite/appwrite/issues/new?body=500%20Error" target="_blank" rel="noopener">report it to the Appwrite team</a>.</p>
3838

3939
<p>To change your dev environment, edit your server _APP_ENV environment variable from ‘production’ to ‘development’ in your Appwrite docker-compose.yml file located in the `appwrite` directory in the location where you first installed Appwrite.</p>
4040

@@ -54,4 +54,4 @@ environment:
5454

5555
<div class="ide margin-bottom" data-lang="bash" data-lang-label="Bash">
5656
<pre class="line-numbers"><code class="prism language-bash" data-prism>docker-compose up -d</code></pre>
57-
</div>
57+
</div>

app/views/docs/functions.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ $image = new View(__DIR__.'/../general/image.phtml');
387387
</li>
388388
</ul>
389389

390-
<p>The example above shows how you can mount your current working dir into the "appwrite/env-node-15.5:1.0.0" Cloud Functions runtime and execute a custom command to simulate exactly how the Appwirte server will execute the function on the Appwrite server. You can also pass multiple environment variables that your code might require.</p>
390+
<p>The example above shows how you can mount your current working dir into the "appwrite/env-node-15.5:1.0.0" Cloud Functions runtime and execute a custom command to simulate exactly how the Appwrite server will execute the function on the Appwrite server. You can also pass multiple environment variables that your code might require.</p>
391391

392392
<p>When running a Cloud Functions runtime for a coding language that uses a central directory for managing all dependencies, you will need to package all your dependencies in your working directory under the ".appwrite" folder as mentioned in the "Handling Dependencies" step above. This will ensure your function container can access all required packages and execute your function successfully.</p>
393393

app/views/docs/permissions.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<p>An Appwrite resource can be a database collection, database document, or a storage file. Each resource has both read and write permissions to define who can access it.</p>
1515

16-
<p>Using the Appwirte permissions mechanism, you can share resources between users, teams, and members with different roles.</p>
16+
<p>Using the Appwrite permissions mechanism, you can share resources between users, teams, and members with different roles.</p>
1717
</div>
1818

1919
<h2 id="default-values"><a href="/docs/permissions#default-values">Default Values</a></h2>

app/views/docs/production.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040

4141
<h2><a href="/docs/production#errorReporting" id="errorReporting">Error Reporting</a></h2>
4242

43-
<p>By default, Appwrite installation comes with error debugging is turned off, You can turn it on in dev mode to try and debug issues, or report problems while still in development mode.</p>
43+
<p>By default, your Appwrite installation comes with error reporting turned off. You can <a href="/docs/debugging#devMode">turn it on in dev mode</a> to try and debug issues or report problems.</p>
4444

4545
<p>In production, it is highly recommended to turn error reporting off. To do so, make sure the Appwrite container environment variable <b>_APP_ENV</b> value from is set to <b>production</b> and not <b>development</b>.</p>

0 commit comments

Comments
 (0)