Skip to content

Commit 3e75ff6

Browse files
committed
Merge pull request bcit-ci#4304 from scherepn/fix-doc-build-errors
[ci skip] Fix mismatched brackets in documentation
1 parent f0f93f5 commit 3e75ff6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

user_guide_src/source/database/db_driver_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ This article is intended to be a reference for them.
8383

8484
Database version number.
8585

86-
.. php:method:: query($sql[, $binds = FALSE[, $return_object = NULL]]])
86+
.. php:method:: query($sql[, $binds = FALSE[, $return_object = NULL]])
8787
8888
:param string $sql: The SQL statement to execute
8989
:param array $binds: An array of binding data

user_guide_src/source/helpers/cookie_helper.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Available Functions
2525
The following functions are available:
2626

2727

28-
.. php:function:: set_cookie($name[, $value = ''[, $expire = ''[, $domain = ''[, $path = '/'[, $prefix = ''[, $secure = FALSE[, $httponly = FALSE]]]]]]]])
28+
.. php:function:: set_cookie($name[, $value = ''[, $expire = ''[, $domain = ''[, $path = '/'[, $prefix = ''[, $secure = FALSE[, $httponly = FALSE]]]]]]])
2929
3030
:param mixed $name: Cookie name *or* associative array of all of the parameters available to this function
3131
:param string $value: Cookie value
@@ -42,7 +42,7 @@ The following functions are available:
4242
a description of its use, as this function is an alias for
4343
``CI_Input::set_cookie()``.
4444

45-
.. php:function:: get_cookie($index[, $xss_clean = NULL]])
45+
.. php:function:: get_cookie($index[, $xss_clean = NULL])
4646
4747
:param string $index: Cookie name
4848
:param bool $xss_clean: Whether to apply XSS filtering to the returned value
@@ -56,7 +56,7 @@ The following functions are available:
5656
the ``$config['cookie_prefix']`` that you might've set in your
5757
*application/config/config.php* file.
5858

59-
.. php:function:: delete_cookie($name[, $domain = ''[, $path = '/'[, $prefix = '']]]])
59+
.. php:function:: delete_cookie($name[, $domain = ''[, $path = '/'[, $prefix = '']]])
6060
6161
:param string $name: Cookie name
6262
:param string $domain: Cookie domain (usually: .yourdomain.com)

user_guide_src/source/helpers/form_helper.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The following functions are available:
108108
<input type="hidden" name="member_id" value="234" />
109109

110110

111-
.. php:function:: form_open_multipart([$action = ''[, $attributes = array()[, $hidden = array()]])
111+
.. php:function:: form_open_multipart([$action = ''[, $attributes = array()[, $hidden = array()]]])
112112
113113
:param string $action: Form action/target URI string
114114
:param array $attributes: HTML attributes
@@ -187,7 +187,7 @@ The following functions are available:
187187
<input type="hidden" name="email" value="john@example.com" id="hiddenemail" class="hiddenemail" />
188188
*/
189189

190-
.. php:function:: form_input([$data = ''[, $value = ''[, $extra = '']])
190+
.. php:function:: form_input([$data = ''[, $value = ''[, $extra = '']]])
191191
192192
:param array $data: Field attributes data
193193
:param string $value: Field value

user_guide_src/source/libraries/trackback.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Class Reference
239239
This method simply validates the incoming TB data, returning TRUE on success and FALSE on failure.
240240
If the data is valid it is set to the ``$this->data`` array so that it can be inserted into a database.
241241

242-
.. php:method:: send_error([$message = 'Incomplete information')
242+
.. php:method:: send_error([$message = 'Incomplete information'])
243243
244244
:param string $message: Error message
245245
:rtype: void

0 commit comments

Comments
 (0)