diff --git a/README.md b/README.md
index 25eed3f..e68e5c9 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Written for Darwin Tree of Life chromosomal level genome assemblies. The executa
- Di/tri/tetranucleotide shannon diversity
- Di/tri/tetranucleotide frequency arrays
-Output files can be visualised using fw_plot or grouped using fw_group
+Output files can be visualised using fw_plot or grouped using fw_group.
## Download
@@ -27,7 +27,7 @@ conda create -n fasta_windows -c bioconda fasta_windows
## Usage
```
-Fasta windows 0.2.2
+Fasta windows 0.2.3
Max Brown
Quickly compute statistics over a fasta file in windows.
diff --git a/src/fw.rs b/src/fw.rs
index 310cd0d..dc11219 100644
--- a/src/fw.rs
+++ b/src/fw.rs
@@ -70,6 +70,7 @@ pub fn fasta_windows(
};
// begin sliding windows
+ // consider changing this to chunks_exact?
let windows = fasta_record.seq().chunks(window_size);
for win in windows {