From 81dfaf8e444321aae1077270b5083368ad085ed6 Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Thu, 15 May 2014 10:10:45 +0300 Subject: [PATCH] naming fixed --- Tests/file-system-tests.ts | 2 +- file-system/index.ts | 2 +- ios7.d.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/file-system-tests.ts b/Tests/file-system-tests.ts index 26bf32cd5..972e67f27 100644 --- a/Tests/file-system-tests.ts +++ b/Tests/file-system-tests.ts @@ -2,7 +2,7 @@ // // # File System // Using the file system requires the FileSystem module. -// TODO: var fs = require("filesystem"); => this will break the intellisense of the tests +// TODO: var fs = require("file-system"); => this will break the intellisense of the tests // ``` JavaScript import fs = require("file-system/file-system"); // ``` diff --git a/file-system/index.ts b/file-system/index.ts index ad3556947..bf898499f 100644 --- a/file-system/index.ts +++ b/file-system/index.ts @@ -1,2 +1,2 @@ declare var module, require; -module.exports = require("filesystem/file_system"); \ No newline at end of file +module.exports = require("file-system/file_system"); \ No newline at end of file diff --git a/ios7.d.ts b/ios7.d.ts index 9cdacdcf2..af94b4cd4 100644 --- a/ios7.d.ts +++ b/ios7.d.ts @@ -74203,7 +74203,7 @@ declare module UIKit { */ delegate: any; /** - * The URL identifying the target file on the local filesystem. + * The URL identifying the target file on the local file-system. * Property for iOS property "URL". */ URL: Foundation.NSURL; @@ -78659,7 +78659,7 @@ declare module UIKit { /** * Returns a Boolean value indicating whether a video file can be edited. * Method for native iOS method "canEditVideoAtPath:". - * @param videoPath The filesystem path to the video file you want to edit. + * @param videoPath The file-system path to the video file you want to edit. */ static canEditVideoAtPath(videoPath: string): boolean; /** @@ -78668,7 +78668,7 @@ declare module UIKit { */ delegate: any; /** - * The filesystem path to the movie to be loaded by the video editor. + * The file-system path to the movie to be loaded by the video editor. * Property for iOS property "videoPath". */ videoPath: string;