From 6eeffa3b9ecd33866e68c7c1e7d9eb850d006cfb Mon Sep 17 00:00:00 2001 From: Stanimir Karoserov Date: Mon, 19 May 2014 15:27:13 +0300 Subject: [PATCH] updated image-source snippets one more time --- Tests/image-source-tests.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tests/image-source-tests.ts b/Tests/image-source-tests.ts index 816d553b3..d22c41975 100644 --- a/Tests/image-source-tests.ts +++ b/Tests/image-source-tests.ts @@ -5,7 +5,7 @@ //var imageSource = require("image-source"); // ``` // The pre-required `imageSource` module is used throughout the following code snippets. -// we also use fs module defined as follows: +// We also use fs module defined as follows: // ``` JavaScript //var fs = require("file-system"); // ``` @@ -22,7 +22,6 @@ export var testFromResource = function () { // // ### Load image using resource name // this similar to loading Bitmap from `R.drawable.logo` on Android or calling `[UIImage imageNamed@"logo"]` on iOS - // TODO: replace getTestImageName() with "logo" // ``` JavaScript var img = imageSource.fromResource("logo"); // ```