Skip to content

Commit f4ff30a

Browse files
authored
Fix typo (#4944)
1 parent f309e78 commit f4ff30a

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

reference/yaf/appconfig.xml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,21 @@
1818
<programlisting role="php">
1919
<![CDATA[
2020
<?php
21-
$configs = array(
22-
"application" => array(
23-
"directory" => dirname(__FILE__),
24-
"dispatcher" => array(
25-
"catchException" => 0,
26-
),
27-
"view" => array(
28-
"ext" => "phtml",
29-
),
30-
),
31-
);
32-
$app = new Yaf_Application($configs);
21+
22+
$configs = array(
23+
"application" => array(
24+
"directory" => dirname(__FILE__),
25+
"dispatcher" => array(
26+
"catchException" => 0,
27+
),
28+
"view" => array(
29+
"ext" => "phtml",
30+
),
31+
),
32+
);
33+
34+
$app = new Yaf_Application($configs);
35+
3336
?>
3437
]]>
3538
</programlisting>
@@ -39,7 +42,7 @@
3942
<programlisting role="ini">
4043
<![CDATA[
4144
[yaf]
42-
yaf.directory = APPLICATION_PATH "/appliation"
45+
yaf.directory = APPLICATION_PATH "/application"
4346
yaf.dispatcher.catchException = 0
4447
4548
[product : yaf]

0 commit comments

Comments
 (0)