From bc9de46f6bfbc5e6508e5f16298c8d60d3ce79ce Mon Sep 17 00:00:00 2001 From: PanCakeConnaisseur Date: Thu, 15 Oct 2020 15:29:55 +0200 Subject: [PATCH] Make app in path lowercase Co-authored-by: Morris Jobke --- developer_manual/app_development/bootstrap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app_development/bootstrap.rst b/developer_manual/app_development/bootstrap.rst index 9973e32a9..c8be92e48 100644 --- a/developer_manual/app_development/bootstrap.rst +++ b/developer_manual/app_development/bootstrap.rst @@ -20,7 +20,7 @@ to register any services or run some code for every request. Nextcloud will try to autoload the class from the namespace ``\OCA\\AppInfo\Application``, like -``\OCA\MyApp\AppInfo\Application``, where *MyApp* would be the name of your app. The file will therefore have the location ``MyApp/lib/AppInfo/Application.php``. +``\OCA\MyApp\AppInfo\Application``, where *MyApp* would be the name of your app. The file will therefore have the location ``myapp/lib/AppInfo/Application.php``. .. code-block:: php