aboutsummaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
authorJJ2023-06-18 06:06:13 +0000
committerJJ2023-06-18 06:06:13 +0000
commit199ce602cd14cecec92d066eb9026aaebb435f70 (patch)
tree0d89bcecc4355224b53295f5f97e427a371944f0 /src/state.rs
parenteee2567e8f9e2f8abf736c79ab12dd5242fab518 (diff)
actually insert newlines in a coherent fashionHEADmain
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.rs b/src/state.rs
index 8b8fa52..59591f2 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -1,10 +1,10 @@
-// default values on structs please ;_;
pub struct State {
pub full: bool,
pub lang: String,
}
impl State {
+ // default values on structs please ;_;
pub fn new() -> State {
return State {
full: false,