From e127274aa5056c05e99ad780c5ff1294bd968156 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Mon, 24 May 2010 15:34:58 -0400 Subject: [PATCH] Fixes missing quote. --- manual/en/configuration.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/en/configuration.txt b/manual/en/configuration.txt index b0f9bd90f..da2714617 100644 --- a/manual/en/configuration.txt +++ b/manual/en/configuration.txt @@ -33,7 +33,7 @@ The following example shows the setup of a `ClassLoader` // test.php require '/path/to/lib/Doctrine/Common/ClassLoader.php'; - $classLoader = new \Doctrine\Common\ClassLoader('Doctrine', '/path/to/Doctrine2/lib); + $classLoader = new \Doctrine\Common\ClassLoader('Doctrine', '/path/to/Doctrine2/lib'); $classLoader->register(); // register on SPL autoload stack For best class loading performance it is recommended that you keep your include_path short, ideally it should only contain the path to the PEAR libraries, and any other class libraries should be registered with their full base path. @@ -410,4 +410,4 @@ based on namespaces: Based on the namespace of the entity the loading of entities is delegated to the appropriate driver. The chain semantics come from the fact that the driver loops through all namespaces and matches the entity class name against the namespace using a `strpos() === 0` call. This means you need to order the drivers correctly if -sub-namespaces use different metadata driver implementations. \ No newline at end of file +sub-namespaces use different metadata driver implementations.