From 44b86a36c8af4009774df957f2ac23830b3528df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nilg=C3=BCn=20Belma=20Bug=C3=BCner?= <nilgun@php.net> Date: Sun, 30 Nov 2008 09:59:52 +0000 Subject: [PATCH] fix wrong slashes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@270132 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/namespaces.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/namespaces.xml b/language/namespaces.xml index 30360ff07e..ed899b5e66 100644 --- a/language/namespaces.xml +++ b/language/namespaces.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- $Revision: 1.7 $ --> +<!-- $Revision: 1.8 $ --> <chapter xml:id="language.namespaces" xmlns="http://docbook.org/ns/docbook" version="1.1"> <title>Namespaces</title> @@ -1410,10 +1410,10 @@ name\func(); <programlisting role="php"> <![CDATA[ <?php -$a = new "dangerous\name"; \\ \n is a newline inside double quoted strings! +$a = new "dangerous\name"; // \n is a newline inside double quoted strings! $obj = new $a; -$a = new 'not\at\all\dangerous'; \\ no problems here. +$a = new 'not\at\all\dangerous'; // no problems here. $obj = new $a; ?> ]]>