aboutsummaryrefslogtreecommitdiffstats
path: root/rst/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rst/src/main.rs')
-rw-r--r--rst/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rst/src/main.rs b/rst/src/main.rs
index 318bcb6..cf16b16 100644
--- a/rst/src/main.rs
+++ b/rst/src/main.rs
@@ -34,7 +34,7 @@ struct Cli {
fn main() -> CliResult {
let args = Cli::from_args();
args.verbosity.setup_env_logger("rst")?;
-
+
// TODO: somehow make it work without replacing tabs
let content = read_file(args.file)?.replace('\t', " ".repeat(8).as_ref());
let document = parse(&content)?;