summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/installation/upgrade_300.rst
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2012-07-04 13:03:26 +0200
committervlakoff <vlakoff@gmail.com>2012-07-04 13:03:26 +0200
commit9d21400f12bfe3a09d27afb00a22ae96fbbed1d5 (patch)
treeead8dba420edcdea99426cf15dc7b187dde99612 /user_guide_src/source/installation/upgrade_300.rst
parentac57033236d5b62ba553b6bea87623f0dbeb2f49 (diff)
Fix typos in upgrade_300.rst
Diffstat (limited to 'user_guide_src/source/installation/upgrade_300.rst')
-rw-r--r--user_guide_src/source/installation/upgrade_300.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst
index 6b93750d1..f304a716f 100644
--- a/user_guide_src/source/installation/upgrade_300.rst
+++ b/user_guide_src/source/installation/upgrade_300.rst
@@ -108,13 +108,13 @@ Date helper standard_date()
:doc:`Date Helper <../helpers/date_helper>` function ``standard_date()`` is being deprecated due
to the availability of native PHP `constants <http://www.php.net/manual/en/class.datetime.php#datetime.constants.types>`_,
which when combined with ``date()`` provide the same functionality. Furthermore, they have the
-exact same names as the ones suppored by ``standard_date()``. Here are examples of how to replace
+exact same names as the ones supported by ``standard_date()``. Here are examples of how to replace
it's usage:
::
// Old way
- standard_date(); // defaults to stanard_date('DATE_RFC822', now());
+ standard_date(); // defaults to standard_date('DATE_RFC822', now());
// Replacement
date(DATE_RFC822, now());