From 5f45f4224f0cf13db9c05c68410b92e79f34460d Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Sat, 24 Aug 2013 09:43:14 -0400 Subject: [PATCH] make the examples in the doc comments match the actual output of the SDL_GetPrefPath function --- include/SDL_filesystem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/SDL_filesystem.h b/include/SDL_filesystem.h index 71ced94fd779b..ea8a1b56f92be 100644 --- a/include/SDL_filesystem.h +++ b/include/SDL_filesystem.h @@ -74,13 +74,13 @@ extern DECLSPEC char *SDLCALL SDL_GetBasePath(void); * path to the directory in UTF-8 encoding. * * On Windows, the string might look like: - * "C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name" + * "C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\" * * On Linux, the string might look like: - * "/home/bob/.local/share/My Program Name" + * "/home/bob/.local/share/My Program Name/" * * On Mac OS X, the string might look like: - * "/Users/bob/Library/Application Support/My Program Name" + * "/Users/bob/Library/Application Support/My Program Name/" * * (etc.) *