소스 검색

Merge pull request #6240 from tfrommen/patch-1

Fix typo
Jordi Boggiano 8 년 전
부모
커밋
1a47d59fa0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      doc/articles/autoloader-optimization.md

+ 1 - 1
doc/articles/autoloader-optimization.md

@@ -74,7 +74,7 @@ filesystem according to PSR-4 rules.
 
 ### Trade-offs
 
-This option makes the autoloader always returns very quickly. On the flipside it
+This option makes the autoloader always return very quickly. On the flipside it
 also means that in case a class is generated at runtime for some reason, it will
 not be allowed to be autoloaded. If your project or any of your dependencies does that
 then you might experience "class not found" issues in production. Enable this with care.