aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ao_debugs.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-05-09 13:01:06 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit60d6073bcfc4fa91253428094813de0dac41a2b4 (patch)
treecef8e223469724d9e42dea81d6ded5ffc75a9be2 /org/ao_debugs.org
parentmodules, collective imports (diff)
0.16.0 files/modules re-arrangeddoc-reform_v0.0.16
Diffstat (limited to 'org/ao_debugs.org')
-rw-r--r--org/ao_debugs.org11
1 files changed, 5 insertions, 6 deletions
diff --git a/org/ao_debugs.org b/org/ao_debugs.org
index 838d7cf..52172fb 100644
--- a/org/ao_debugs.org
+++ b/org/ao_debugs.org
@@ -16,11 +16,11 @@
* 1. abstraction debugs :module:sdp:ao_doc_debugs:
** 0. module template
-#+BEGIN_SRC d :tangle ../src/sdp/ao_doc_debugs.d
+#+BEGIN_SRC d :tangle ../src/sdp/ao/doc_debugs.d
/++
output debugs
+/
-module sdp.ao_doc_debugs;
+module sdp.ao.doc_debugs;
template SiSUdebugs() {
<<debug_imports>>
auto SiSUdebugs(S,T)(
@@ -46,9 +46,9 @@ template SiSUdebugs() {
#+name: debug_imports
#+BEGIN_SRC d
import
- sdp.ao_defaults,
- sdp.ao_rgx;
-private import
+ sdp.ao.defaults,
+ sdp.ao.rgx;
+import
std.algorithm,
std.array,
std.container,
@@ -62,7 +62,6 @@ private import
std.string,
std.traits,
std.typecons,
- std.uni,
std.utf,
std.conv : to;
#+END_SRC