Skip to content

Commit c0b55d5

Browse files
author
Derek Jones
committed
Merge pull request bcit-ci#2587 from vlakoff/feature/user-guide-cleanup
Fix various typos
2 parents c9bf303 + 2efd1f2 commit c0b55d5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

user_guide_src/source/changelog.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Release Date: Not Released
7474
- :func:`anchor_popup()` will now fill the *href* attribute with the URL and its JS code will return FALSE instead.
7575
- Added JS window name support to the :func:`anchor_popup()` function.
7676
- Added support (auto-detection) for HTTP/1.1 response code 303 in :func:`redirect()`.
77-
- Changed :func:`redirect()` to only choose the **refresh** method only on IIS servers, instead of all servers on Windows (when **auto** is used).
77+
- Changed :func:`redirect()` to choose the **refresh** method only on IIS servers, instead of all servers on Windows (when **auto** is used).
7878
- Changed :func:`anchor()`, :func:`anchor_popup()`, and :func:`redirect()` to support protocol-relative URLs (e.g. *//ellislab.com/codeigniter*).
7979
- Added an optional second parameter to both :func:`base_url()` and :func:`site_url()` that allows enforcing of a protocol different than the one in the *base_url* configuration setting.
8080

@@ -403,7 +403,7 @@ Release Date: Not Released
403403
- :doc:`Config Library <libraries/config>` changes include:
404404

405405
- Changed ``site_url()`` method to accept an array as well.
406-
- Removed internal method ``_assign_to_config()`` and moved it's implementation in *CodeIgniter.php* instead.
406+
- Removed internal method ``_assign_to_config()`` and moved its implementation in *CodeIgniter.php* instead.
407407

408408
- :doc:`Security Library <libraries/security>` changes include:
409409

@@ -508,7 +508,7 @@ Bug fixes for 3.0
508508
- Fixed a bug (#784, #861) - :doc:`Database Forge <database/forge>` method ``create_table()`` used to accept constraints for MSSQL/SQLSRV integer-type columns.
509509
- Fixed a bug (#706) - SQLSRV/MSSSQL didn't escape field names.
510510
- Fixed a bug (#1452) - ``protect_identifiers()`` didn't properly detect identifiers with spaces in their names.
511-
- Fixed a bug where ``protect_identifiers()`` ignored it's extra arguments when the value passed to it is an array.
511+
- Fixed a bug where ``protect_identifiers()`` ignored its extra arguments when the value passed to it is an array.
512512
- Fixed a bug where ``_has_operator()`` didn't detect BETWEEN.
513513
- Fixed a bug in :doc:`Query Builder <database/query_builder>`'s ``join()`` method where it failed with identifiers containing dashes.
514514
- Fixed a bug (#1264) - :doc:`Database Forge <database/forge>` and :doc:`Database Utilities <database/utilities>` didn't update/reset the databases and tables list cache when a table or a database is created, dropped or renamed.
@@ -548,7 +548,7 @@ Bug fixes for 3.0
548548
- Fixed a bug where the :doc:`Session Library <libraries/sessions>` accepted cookies with *last_activity* values being in the future.
549549
- Fixed a bug (#1897) - :doc:`Email Library <libraries/email>` triggered PHP E_WARNING errors when *mail* protocol used and ``to()`` is never called.
550550
- Fixed a bug (#1409) - :doc:`Email Library <libraries/email>` didn't properly handle multibyte characters when applying Q-encoding to headers.
551-
- Fixed a bug where :doc:`Email Library <libraries/email>` didn't honor it's *wordwrap* setting while handling alternative messages.
551+
- Fixed a bug where :doc:`Email Library <libraries/email>` didn't honor its *wordwrap* setting while handling alternative messages.
552552
- Fixed a bug (#1476, #1909) - :doc:`Pagination Library <libraries/pagination>` didn't take into account actual routing when determining the current page.
553553
- Fixed a bug (#1766) - :doc:`Query Builder <database/query_builder>` didn't always take into account the *dbprefix* setting.
554554
- Fixed a bug (#779) - :doc:`URI Class <libraries/uri>` didn't always trim slashes from the *uri_string* as shown in the documentation.
@@ -674,7 +674,7 @@ Bug fixes for 2.1.1
674674
- Fixed a bug (#538) - Windows paths were ignored when using the :doc:`Image Manipulation Library <libraries/image_lib>` to create a new file.
675675
- Fixed a bug - When database caching was enabled, $this->db->query() checked the cache before binding variables which resulted in cached queries never being found.
676676
- Fixed a bug - CSRF cookie value was allowed to be any (non-empty) string before being written to the output, making code injection a risk.
677-
- Fixed a bug (#726) - PDO put a 'dbname' argument in it's connection string regardless of the database platform in use, which made it impossible to use SQLite.
677+
- Fixed a bug (#726) - PDO put a 'dbname' argument in its connection string regardless of the database platform in use, which made it impossible to use SQLite.
678678
- Fixed a bug - ``CI_DB_pdo_driver::num_rows()`` was not returning properly value with SELECT queries, cause it was relying on ``PDOStatement::rowCount()``.
679679
- Fixed a bug (#1059) - ``CI_Image_lib::clear()`` was not correctly clearing all necessary object properties, namely width and height.
680680

user_guide_src/source/helpers/smiley_helper.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This helper is loaded using the following code::
2222
Overview
2323
========
2424

25-
The Smiley helper has a renderer that takes plain text simileys, like
25+
The Smiley helper has a renderer that takes plain text smileys, like
2626
:-) and turns them into a image representation, like |smile!|
2727

2828
It also lets you display a set of smiley images that when clicked will
@@ -49,7 +49,7 @@ The Controller
4949
--------------
5050

5151
In your `application/controllers/` folder, create a file called
52-
smileys.php and place the code below in it.
52+
Smileys.php and place the code below in it.
5353

5454
.. important:: Change the URL in the :func:`get_clickable_smileys()`
5555
function below so that it points to your smiley folder.
@@ -157,7 +157,7 @@ Available Functions
157157

158158
Example::
159159

160-
$str = 'Here are some simileys: :-) ;-)';
160+
$str = 'Here are some smileys: :-) ;-)';
161161
$str = parse_smileys($str, "http://example.com/images/smileys/");
162162
echo $str;
163163

user_guide_src/source/installation/upgrade_300.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ If your application relies on IF EXISTS, you'll have to change its usage.
162162
// Produces DROP TABLE IF EXISTS `table_name`
163163
$this->dbforge->drop_table('table_name', TRUE);
164164

165-
.. note:: The given example users MySQL-specific syntax, but it should work across
165+
.. note:: The given example uses MySQL-specific syntax, but it should work across
166166
all drivers with the exception of ODBC.
167167

168168
***********************************************************

0 commit comments

Comments
 (0)