Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: sdk/lib/io/file_system_entity.dart

Issue 901513002: Change Mac OS to OS X in dart:io dartdoc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/file.dart ('k') | sdk/lib/io/platform.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/file_system_entity.dart
diff --git a/sdk/lib/io/file_system_entity.dart b/sdk/lib/io/file_system_entity.dart
index 5c15c1c8c87d99906fe76572e1474861de86d72f..fe0b18826d3e026d2090a1abe6856aff3f56f348 100644
--- a/sdk/lib/io/file_system_entity.dart
+++ b/sdk/lib/io/file_system_entity.dart
@@ -273,7 +273,7 @@ abstract class FileSystemEntity {
*
* [resolveSymbolicLinks] uses the operating system's native
* file system API to resolve the path, using the `realpath` function
- * on linux and Mac OS, and the `GetFinalPathNameByHandle` function on
+ * on linux and OS X, and the `GetFinalPathNameByHandle` function on
* Windows. If the path does not point to an existing file system object,
* `resolveSymbolicLinks` throws a `FileSystemException`.
*
@@ -313,7 +313,7 @@ abstract class FileSystemEntity {
*
* [resolveSymbolicLinksSync] uses the operating system's native
* file system API to resolve the path, using the `realpath` function
- * on linux and Mac OS, and the `GetFinalPathNameByHandle` function on
+ * on linux and OS X, and the `GetFinalPathNameByHandle` function on
* Windows. If the path does not point to an existing file system object,
* `resolveSymbolicLinksSync` throws a `FileSystemException`.
*
@@ -418,7 +418,7 @@ abstract class FileSystemEntity {
* files and directories. Recursive watching is not supported.
* Note: When watching files directly, delete events might not happen
* as expected.
- * * `Mac OS`: Uses `FSEvents`. The implementation supports watching both
+ * * `OS X`: Uses `FSEvents`. The implementation supports watching both
* files and directories. Recursive watching is supported.
*
* The system will start listening for events once the returned [Stream] is
@@ -529,7 +529,7 @@ abstract class FileSystemEntity {
/**
* Test if [watch] is supported on the current system.
*
- * Mac OS 10.6 and below is not supported.
+ * OS X 10.6 and below is not supported.
*/
static bool get isWatchSupported => _FileSystemWatcher.isSupported;
« no previous file with comments | « sdk/lib/io/file.dart ('k') | sdk/lib/io/platform.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698