Преглед на файлове

Fix typo in troubleshooting article

Kirill chEbba Chebunin преди 13 години
родител
ревизия
99f3444f30
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      doc/articles/troubleshooting.md

+ 2 - 2
doc/articles/troubleshooting.md

@@ -16,10 +16,10 @@ Get current value:
 
 Increase limit with `php.ini` for a `CLI SAPI` (ex. `/etc/php5/cli/php.ini` for Debian-like systems):
 
-    ; Use -1 for unlimited or define expicit value like 512M
+    ; Use -1 for unlimited or define explicit value like 512M
     memory_limit = -1
 
-Or with comand line arguments:
+Or with command line arguments:
 
     php -d memory_limit=-1 composer.phar <...>