add missing pathsep, fix #4075

This commit is contained in:
dessant 2016-03-10 05:09:37 +02:00
parent 200eae4b98
commit ab4eaccd99
1 changed files with 2 additions and 2 deletions

View File

@ -752,14 +752,14 @@ class App(EventDispatcher):
This function implements these conventions. The <app_name> directory
is created when the property is called, unless it already exists.
On iOS, `~/Documents<app_name>` is returned (which is inside the
On iOS, `~/Documents/<app_name>` is returned (which is inside the
app's sandbox).
On Android, `/sdcard/<app_name>` is returned.
On Windows, `%APPDATA%/<app_name>` is returned.
On Mac OSX, `~/Library/Application Support/<app_name>` is returned.
On OS X, `~/Library/Application Support/<app_name>` is returned.
On Linux, `$XDG_CONFIG_HOME/<app_name>` is returned.
'''