質問編集履歴

1

correct grammar

2020/08/02 09:33

投稿

polypoly
polypoly

スコア1

test CHANGED
File without changes
test CHANGED
@@ -12,13 +12,13 @@
12
12
 
13
13
 
14
14
 
15
- // DocumentディレクトリのfileURLを取得
15
+ // Get fileURL of Document directory.
16
16
 
17
17
  let documentDirectoryFileURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!
18
18
 
19
19
 
20
20
 
21
- //csvStringArrayにCSVファイルの元となるStringが入っている。
21
+ //csvStringArray contains String items which CSV files are made of.
22
22
 
23
23
  for i in 0..<csvStringArray.count{
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
  let csvData = csvStringArray[i]
28
28
 
29
- // ディレクトリのパスにファイル名をつなげてファイルのフルパスを作る
29
+
30
30
 
31
31
  let FilePath = documentDirectoryFileURL.appendingPathComponent(fileName)
32
32