Skip to content

Commit ad49578

Browse files
bitdawkenjispaulbalandan
authored
Fix several grammar errors and typos (#6738)
* Fixed several grammar errors and typos * Update user_guide_src/source/tutorial/index.rst * Update user_guide_src/source/installation/repositories.rst Co-authored-by: kenjis <[email protected]> Co-authored-by: John Paul E. Balandan, CPA <[email protected]>
1 parent 9cbf480 commit ad49578

File tree

24 files changed

+34
-34
lines changed

24 files changed

+34
-34
lines changed

user_guide_src/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Installation
7575

7676
Now we need to install Sphinx and it's dependencies. Choose ``pip`` or ``pip3``
7777
depending on operative system. After this step you need to restart your Terminal
78-
window as Python won't find all applications we just installed othervise.
78+
window as Python won't find all applications we just installed otherwise.
7979

8080
.. code-block:: bash
8181

user_guide_src/source/_static/js/citheme.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ window.onload = function() {
2323
var chapter = sanitizeClass(index[1]);
2424
var subject = sanitizeClass(index[2]);
2525

26-
// Documentation are generated into an html-folder for developers.
27-
// This aren't a valid chapter. We are on documentation index.
26+
// Documentation is generated into an html-folder for developers.
27+
// This isn't a valid chapter. We are on documentation index.
2828
if (chapter === 'html')
2929
{
3030
index = null;

user_guide_src/source/changelogs/v4.0.0-beta.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ PRs merged
179179
- #1943 Model, Entity, Exception & Migration test cases
180180
- #1939 Remove section that prevents hotlinking
181181
- #1938 Database typos changes
182-
- #1936 Docs: improce app testing writeup
182+
- #1936 Docs: improve app testing writeup
183183
- #1935 Update phpunit.xml scripts. Fixes #1932
184184
- #1933 having (Is NULL deletion)
185185
- #1931 Toolbar IE11 fix

user_guide_src/source/dbmgmt/db_commands.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Database Commands
33
#################
44

5-
CodeIgniter provides some simple commands for databse management.
5+
CodeIgniter provides some simple commands for database management.
66

77
.. contents::
88
:local:

user_guide_src/source/general/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ prefix followed by a dot (.), and then the variable name itself.
134134
Namespace Separator
135135
-------------------
136136

137-
Some environments, e.g., Docker, CloudFormation, do not permit variable name with dots (``.``). In such case, since v4.1.5, you could also use underscores (``_``) as a seperator.
137+
Some environments, e.g., Docker, CloudFormation, do not permit variable name with dots (``.``). In such case, since v4.1.5, you could also use underscores (``_``) as a separator.
138138

139139
::
140140

user_guide_src/source/helpers/html_helper.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ The following functions are available:
165165
<li>shapes
166166
<ul>
167167
<li>round</li>
168-
<li>suare</li>
168+
<li>square</li>
169169
<li>circles
170170
<ul>
171-
<li>elipse</li>
171+
<li>ellipse</li>
172172
<li>oval</li>
173173
<li>sphere</li>
174174
</ul>

user_guide_src/source/incoming/content_negotiation.rst

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

4141
The first aspect to look at is handling 'media' negotiations. These are provided by the ``Accept`` header and
4242
is one of the most complex headers available. A common example is the client telling the server what format it
43-
wants the data in. This is especially common in API's. For example, a client might request JSON formatted data
43+
wants the data in. This is especially common in APIs. For example, a client might request JSON formatted data
4444
from an API endpoint::
4545

4646
GET /foo HTTP/1.1

user_guide_src/source/incoming/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Offsetting the Matched Parameters
461461
You can offset the matched parameters in your route by any numeric value with the ``offset`` option, with the
462462
value being the number of segments to offset.
463463

464-
This can be beneficial when developing API's with the first URI segment being the version number. It can also
464+
This can be beneficial when developing APIs with the first URI segment being the version number. It can also
465465
be used when the first parameter is a language string:
466466

467467
.. literalinclude:: routing/042.php

user_guide_src/source/installation/repositories.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ There are several development repositories, of interest to potential contributor
2828
+------------------+--------------+-----------------------------------------------------------------+
2929
| shield | developers | Authentication and Authorization Library for CodeIgniter 4 |
3030
+------------------+--------------+-----------------------------------------------------------------+
31-
| tasks | developers | Task Scheduler for CodeIgnter 4 |
31+
| tasks | developers | Task Scheduler for CodeIgniter 4 |
3232
+------------------+--------------+-----------------------------------------------------------------+
3333
| cache | developers | PSR-6 and PSR-16 Cache Adapters for CodeIgniter 4 |
3434
+------------------+--------------+-----------------------------------------------------------------+

user_guide_src/source/installation/upgrade_sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Upgrade Guide
2323
- To access session data use the syntax ``$session->item`` or ``$session->get('item')`` instead of the CI3 syntax ``$this->session->name``.
2424
- To set data use ``$session->set($array);`` instead of ``$this->session->set_userdata($array);``.
2525
- To remove data use ``unset($_SESSION['some_name']);`` or ``$session->remove('some_name');`` instead of ``$this->session->unset_userdata('some_name');``.
26-
- To mark session data as flasdata, which will only be available for the next request, use ``$session->markAsFlashdata('item');`` instead of ``$this->session->mark_as_flash('item');```
26+
- To mark session data as flashdata, which will only be available for the next request, use ``$session->markAsFlashdata('item');`` instead of ``$this->session->mark_as_flash('item');```
2727

2828
Code Example
2929
============

0 commit comments

Comments
 (0)