aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/ao/read_source_files.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-06-06 17:58:10 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commite280a374991a3a6db3c40fd1fa03a2d9c6fa66eb (patch)
tree730441b0371f6f65794a5e598000e89c06127bed /src/sdp/ao/read_source_files.d
parentgetopt, fixes, & naming command line options related (diff)
naming mostly
Diffstat (limited to 'src/sdp/ao/read_source_files.d')
-rw-r--r--src/sdp/ao/read_source_files.d6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sdp/ao/read_source_files.d b/src/sdp/ao/read_source_files.d
index 3b348f3..db20cfd 100644
--- a/src/sdp/ao/read_source_files.d
+++ b/src/sdp/ao/read_source_files.d
@@ -115,14 +115,14 @@ template SiSUrawMarkupContent() {
return t;
}
final char[][] getInsertMarkupSourceContentRawLineArray(
- in char[] fn_src,
+ in char[] fn_src_insert,
Regex!(char) rgx_file
) {
enforce(
- fn_src.match(rgx_file),
+ fn_src_insert.match(rgx_file),
"not a sisu markup filename"
);
- auto source_txt_str = readInMarkupSource(fn_src);
+ auto source_txt_str = readInMarkupSource(fn_src_insert);
auto source_line_arr = markupSourceLineArray(source_txt_str);
return source_line_arr;
}