Skip to content

Commit

Permalink
Merge pull request bcit-ci#2007 from sourcejedi/doc-typo-applications
Browse files Browse the repository at this point in the history
Documentation: fix typos in name of application folder
  • Loading branch information
narfbg committed Nov 19, 2012
2 parents 4173fa0 + a51f8ec commit 78ca024
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion user_guide_src/source/changelog.rst
Expand Up @@ -2399,7 +2399,7 @@ Release Date: September 17, 2006
- Moved the list of "allowed URI characters" out of the Router class
and into the config file.
- Moved the MIME type array out of the Upload class and into its own
file in the applications/config/ folder.
file in the application/config/ folder.
- Updated the Upload class to allow the upload field name to be set
when calling :doc:`do_upload() <./libraries/file_uploading>`.
- Updated the :doc:`Config Library <./libraries/config>` to be able to
Expand Down
6 changes: 3 additions & 3 deletions user_guide_src/source/libraries/file_uploading.rst
Expand Up @@ -26,7 +26,7 @@ Creating the Upload Form
========================

Using a text editor, create a form called upload_form.php. In it, place
this code and save it to your applications/views/ folder::
this code and save it to your application/views/ folder::

<html>
<head>
Expand Down Expand Up @@ -59,7 +59,7 @@ The Success Page
================

Using a text editor, create a form called upload_success.php. In it,
place this code and save it to your applications/views/ folder::
place this code and save it to your application/views/ folder::

<html>
<head>
Expand All @@ -84,7 +84,7 @@ The Controller
==============

Using a text editor, create a controller called upload.php. In it, place
this code and save it to your applications/controllers/ folder::
this code and save it to your application/controllers/ folder::

<?php

Expand Down
6 changes: 3 additions & 3 deletions user_guide_src/source/libraries/form_validation.rst
Expand Up @@ -63,7 +63,7 @@ The Form
========

Using a text editor, create a form called myform.php. In it, place this
code and save it to your applications/views/ folder::
code and save it to your application/views/ folder::

<html>
<head>
Expand Down Expand Up @@ -98,7 +98,7 @@ The Success Page
================

Using a text editor, create a form called formsuccess.php. In it, place
this code and save it to your applications/views/ folder::
this code and save it to your application/views/ folder::

<html>
<head>
Expand All @@ -117,7 +117,7 @@ The Controller
==============

Using a text editor, create a controller called form.php. In it, place
this code and save it to your applications/controllers/ folder::
this code and save it to your application/controllers/ folder::

<?php

Expand Down
4 changes: 2 additions & 2 deletions user_guide_src/source/libraries/xmlrpc.rst
Expand Up @@ -297,7 +297,7 @@ The Client
----------

Using a text editor, create a controller called xmlrpc_client.php. In
it, place this code and save it to your applications/controllers/
it, place this code and save it to your application/controllers/
folder::

<?php
Expand Down Expand Up @@ -338,7 +338,7 @@ The Server
----------

Using a text editor, create a controller called xmlrpc_server.php. In
it, place this code and save it to your applications/controllers/
it, place this code and save it to your application/controllers/
folder::

<?php
Expand Down

0 comments on commit 78ca024

Please sign in to comment.