Skip to content

Commit

Permalink
Merge #755
Browse files Browse the repository at this point in the history
755: Version r=Marwes a=Marwes



Co-authored-by: Markus Westerlind <[email protected]>
  • Loading branch information
bors[bot] and Marwes committed Jul 6, 2019
2 parents 259cedf + e21f02c commit 1329454
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ script:
elif [[ -z ${WASM+set} ]]; then
mdbook build book
./scripts/travis.sh
if ! git diff-index HEAD --; then
echo "Detected changes in the source after running tests"
exit 1
fi
else
rustup target add wasm32-unknown-unknown
cargo check --target wasm32-unknown-unknown -p gluon_c-api
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ let parse : String -> Result String Expr =
let lex x = x <* spaces
let integer =
// `do` expression provide a way to write monads in a way similar to procedural code
// `do` expression provide a way to write monads in a way similiar to procedural code
do i = lex (recognize (skip_many1 digit))
match int.parse i with
| Ok x -> wrap x
Expand Down

0 comments on commit 1329454

Please sign in to comment.