Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
Various UI tweaks
Fix off-by-one in modal strict nesting check
  • Loading branch information
Colonial-Dev committed Apr 29, 2024
1 parent c611a37 commit 81c7ffc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "deduct"
authors = ["Colonial"]
version = "1.0.1"
version = "1.0.2"
edition = "2021"
description = "A Fitch-style natural deduction proof checker, with support for modal logic."
repository = "https://github.com/Colonial-Dev/deduct"
Expand Down
2 changes: 1 addition & 1 deletion src/check/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ fn check_strict_nesting(p: &Proof, s: u16, e: u16) -> Result<(), CheckError> {
let mut depth = 0_u16;
let mut nest = 0_u16;

for n in s..e {
for n in s..=e {
let line = p.line(n).unwrap();

if line.s.is_nec_signal() {
Expand Down

0 comments on commit 81c7ffc

Please sign in to comment.