Skip to content

Commit

Permalink
bugfix: yeah, that shouldn't be the empty string liter
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed May 14, 2017
1 parent e0b64b6 commit 39955f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/jssm-types.js
Expand Up @@ -83,7 +83,7 @@ type JssmTransition<NT, DT> = {
action? : NT,
check? : JssmTransitionPermitterMaybeArray<NT, DT>, // validate this edge's transition; usually about data
probability? : number, // for stoch modelling, would like to constrain to [0..1], dunno how
usual? : '' // most common exit, for graphing; likelihood overrides
usual? : string // most common exit, for graphing; likelihood overrides
};

type JssmTransitions<NT, DT> = Array< JssmTransition<NT, DT> >;
Expand Down

0 comments on commit 39955f3

Please sign in to comment.