Doc update for hz_sophia and hz_aaci and some minor fixes #30
Reference in New Issue
Block a user
Delete Branch "spivee/docs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
A while ago I tried dialyzer and discovered that actually a lot of the AACI generation process never fails, and whatever the one failure was that was possible, I think I decided was unnecessary, and made that produce {ok, unknown_type} instead. I then set the types of these functions to be {ok, Result} | {error, none()}, since there were in fact no errors, but dialyzer still spewed out warnings for all the case blocks that redundantly check for these impossible error conditions. Anyway now that is fixed! The behavior and external interface are all the same still, there are just fewer warnings now. Also added specs for a couple more internal functions, just because. So noperhaps realized that actually none of it should fail. I never went in and removed all the {ok, _} wrappers, but I did at least type the functions with the correct error list