Skip to content

Commit

Permalink
Fix small typos in README & add link (gyson#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
turion authored Dec 25, 2020
1 parent b23a0d9 commit 25e4ef6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A type checker for Elixir.
## Feature

- gradual typing
- type check for protocol and generic protocol
- type check for protocols and generic protocols
- type check with intersection and union types
- type guards
- type assertion
Expand All @@ -31,11 +31,11 @@ end

To help ExType infer types, following rules are required:

1. All public functions require explicit typespec.
1. All public functions require explicit typespecs.

2. All recursive functions require explicit typespec.
2. All recursive functions require explicit typespecs.

Basically, you do not need to add typespec for non-recursive private functions.
Basically, you do not need to add a typespec for non-recursive private functions.

## Usage

Expand All @@ -59,9 +59,9 @@ There are some examples in `lib/ex_type/example/` directory.

## Status

This project is still in very early stage with active development. You are likely to hit
uncovered case when playing more complex code beyond example. Be free to submit github
issue for bug report or any feedback.
This project is still in a very early stage with active development. You are likely to hit
uncovered cases when playing more complex code beyond the examples. Be free to submit [a github
issue](https://github.com/gyson/ex_type/issues/new) for a bug report or any feedback.

## Roadmap

Expand Down

0 comments on commit 25e4ef6

Please sign in to comment.