Drop Mac prefix when referencing OS X.

Apple only refers to OS X and not Mac OS X since 10.8.
This commit is contained in:
Tobias Taschner
2016-02-04 09:54:36 +01:00
parent 50e6c10bb2
commit df33c0c491
9 changed files with 17 additions and 17 deletions

View File

@@ -2458,7 +2458,7 @@ should be processed on. It is filtered out and ignored on any other platforms.
Possible elemental values are:
@beginDefList
@itemdef{ @c win, Windows }
@itemdef{ @c mac, Mac OS X (or Mac Classic in wxWidgets version supporting it) }
@itemdef{ @c mac, OS X (or Mac Classic in wxWidgets version supporting it) }
@itemdef{ @c unix, Any Unix platform @em except OS X }
@endDefList
@@ -2466,7 +2466,7 @@ Examples:
@code
<label platform="win">Windows</label>
<label platform="unix">Unix</label>
<label platform="mac">Mac OS X</label>
<label platform="mac">OS X</label>
<help platform="mac|unix">Not a Windows machine</help>
@endcode