8000 Fixed typos by pborreli · Pull Request #114 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fixed typos #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
14 commits merged into from
Feb 26, 2011
Prev Previous commit
Next Next commit
[DoctrineMongoDBBundle] Fixed typo
  • Loading branch information
pborreli committed Feb 26, 2011
commit ecd3845b8035641decea8758e4577aaf1bcf2dd4
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct(Container $container)
}

/**
* This cache warmer is not optional, without hydrators fatal error occour!
* This cache warmer is not optional, without hydrators fatal error occurs!
*
* @return false
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct(Container $container)
}

/**
* This cache warmer is not optional, without proxies fatal error occour!
* This cache warmer is not optional, without proxies fatal error occurs!
*
* @return false
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function configure()

<info>./app/console doctrine:generate:documents "MyCustomBundle" --document="User"</info>

You have to specifiy the shortname (without namespace) of the document you want to filter for.
You have to specify the shortname (without namespace) of the document you want to filter for.
EOT
);
}
Expand All @@ -66,7 +66,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

if (strpos($metadata->name, $foundBundle->getNamespace()) === false) {
throw new \RuntimeException(
"Document " . $metadata->name . " and bundle don't have a commont namespace, ".
"Document " . $metadata->name . " and bundle don't have a common namespace, ".
"generation failed because the target directory cannot be detected.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
if ($metadata->customRepositoryClassName) {
if (strpos($metadata->customRepositoryClassName, $foundBundle->getName()) === false) {
throw new \RuntimeException(
"Repository " . $metadata->customRepositoryClassName . " and bundle don't have a commont namespace, ".
"Repository " . $metadata->customRepositoryClassName . " and bundle don't have a common namespace, ".
"generation failed because the target directory cannot be detected.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ protected function getConnections(array $config, ContainerBuilder $container)
*
* There are two distinct configuration possibilities for mapping information:
*
* 1. Specifiy a bundle and optionally details where the entity and mapping information reside.
* 2. Specifiy an arbitrary mapping location.
* 1. Specify a bundle and optionally details where the entity and mapping information reside.
* 2. Specify an arbitrary mapping location.
*
* @example
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class ProxyCacheWarmerTest extends \Symfony\Bundle\DoctrineMongoDBBundle\Tests\TestCase
{
/**
* This is not necessarily a good test, it doesnt generate any proxies
* This is not necessarily a good test, it doesn't generate any proxies
* because there are none in the AnnotationsBundle. However that is
* rather a task of doctrine to test. We touch the lines here and
* verify that the container is called correctly for the relevant information.
Expand Down
0