aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_zip.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/out_zip.org')
-rw-r--r--org/out_zip.org9
1 files changed, 5 insertions, 4 deletions
diff --git a/org/out_zip.org b/org/out_zip.org
index 9f4b7f2..d9f89a1 100644
--- a/org/out_zip.org
+++ b/org/out_zip.org
@@ -22,10 +22,11 @@
#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/create_zip_file.d"
module doc_reform.io_out.create_zip_file;
template createZipFile() {
- import std.file;
- import std.outbuffer;
- import std.string;
- import std.zip;
+ import
+ std.file,
+ std.outbuffer,
+ std.string,
+ std.zip;
@safe void createZipFile(
string zip_file_name,
void[] compressed_zip_data,