-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add type information #143
base: master
Are you sure you want to change the base?
Add type information #143
Conversation
Any thoughts on this? |
lib/ace/http2/frame.ex
Outdated
@@ -68,8 +64,8 @@ defmodule Ace.HTTP2.Frame do | |||
{:error, {:unknown_frame_type, type}} -> | |||
{:ok, {{:unknown_frame_type, type}, unprocessed}} | |||
|
|||
{:error, reason} -> | |||
{:error, reason} | |||
{:error, reason} -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Odd formatting here. 🤔
This is good. Would be good to be able to Run dialyzer against it in travis |
@varnerac can you merge the latest master into this branch. Then have a look if dialyzer passes. https://travis-ci.org/github/CrowdHailer/Ace/pull_requests I see a few errors on master but wonder if the improved type information on here will clear them up.
|
Will do |
Type all the things. Minor refactors.