Skip to content

Commit

Permalink
Fix nominal month length
Browse files Browse the repository at this point in the history
  • Loading branch information
darius-bluespec committed Sep 17, 2024
1 parent aa5559f commit 6cbbc62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wbs.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

Time estimates are work time; scheduling will be done separately.
For estimating purposes, one day (1d) is eight hours (8h), one week
(1w) is five days, and one month (1m) is thirty days.
(1w) is five days, and one month (1m) is four weeks.

spec Specifications
spec-isa ISA Specification Package
Expand Down
2 changes: 1 addition & 1 deletion wbs2csv
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ normalize_time () {
h) echo ${BASH_REMATCH[1]} ;;
d) echo $(( ${BASH_REMATCH[1]} * 8 )) ;;
w) echo $(( ${BASH_REMATCH[1]} * 5 * 8 )) ;;
m) echo $(( ${BASH_REMATCH[1]} * 5 * 30 )) ;;
m) echo $(( ${BASH_REMATCH[1]} * 4 * 5 * 8 )) ;;
esac
else
echo $1
Expand Down

0 comments on commit 6cbbc62

Please sign in to comment.