소스 검색

Fix README (#501)

remove extra space
Kota Furusawa 7 년 전
부모
커밋
821eeb0f9d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      README.md

+ 1
- 1
README.md 파일 보기

@@ -236,7 +236,7 @@ RNFetchBlob
236 236
     console.log('The file saved to ', res.path())
237 237
     // Beware that when using a file path as Image source on Android,
238 238
     // you must prepend "file://"" before the file path
239
-    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' + res.path()  : '' + res.path() }}/>
239
+    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' + res.path() : '' + res.path() }}/>
240 240
   })
241 241
 ```
242 242