Skip to content

Commit

Permalink
Fixed examples in docs
Browse files Browse the repository at this point in the history
(cherry picked from commit ae1c1f3)
  • Loading branch information
bogdan-iancu committed May 25, 2017
1 parent 1f3ae25 commit 281aef5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/sql_cacher/README
Expand Up @@ -190,7 +190,7 @@ modparam("sql_cacher", "columns_delimiter", ",")

Example 1.5. sql_fetch_nr_rows parameter usage

modparam("sql_cacher", "sql_fetch_nr_rows", "1000")
modparam("sql_cacher", "sql_fetch_nr_rows", 1000)


1.3.6. full_caching_expire (integer)
Expand All @@ -203,7 +203,7 @@ modparam("sql_cacher", "sql_fetch_nr_rows", "1000")

Example 1.6. full_caching_expire parameter usage

modparam("sql_cacher", "full_caching_expire", "3600")
modparam("sql_cacher", "full_caching_expire", 3600)


1.3.7. reload_interval (integer)
Expand All @@ -215,7 +215,7 @@ modparam("sql_cacher", "full_caching_expire", "3600")

Example 1.7. reload_interval parameter usage

modparam("sql_cacher", "reload_interval", "5")
modparam("sql_cacher", "reload_interval", 5)


1.4. Exported Functions
Expand Down
6 changes: 3 additions & 3 deletions modules/sql_cacher/doc/sql_cacher_admin.xml
Expand Up @@ -207,7 +207,7 @@ modparam("sql_cacher", "columns_delimiter", ",")
<title><varname>sql_fetch_nr_rows</varname> parameter usage</title>
<programlisting format="linespecific">

modparam("sql_cacher", "sql_fetch_nr_rows", "1000")
modparam("sql_cacher", "sql_fetch_nr_rows", 1000)

</programlisting>
</example>
Expand All @@ -227,7 +227,7 @@ modparam("sql_cacher", "sql_fetch_nr_rows", "1000")
<title><varname>full_caching_expire</varname> parameter usage</title>
<programlisting format="linespecific">

modparam("sql_cacher", "full_caching_expire", "3600")
modparam("sql_cacher", "full_caching_expire", 3600)

</programlisting>
</example>
Expand All @@ -246,7 +246,7 @@ modparam("sql_cacher", "full_caching_expire", "3600")
<title><varname>reload_interval</varname> parameter usage</title>
<programlisting format="linespecific">

modparam("sql_cacher", "reload_interval", "5")
modparam("sql_cacher", "reload_interval", 5)

</programlisting>
</example>
Expand Down

0 comments on commit 281aef5

Please sign in to comment.