Skip to content

Commit 6036cf8

Browse files
committed
Doc
1 parent ad6af37 commit 6036cf8

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
# Array
22

3-
An Elixir wrapper for Erlang's array.
3+
An Elixir wrapper library for Erlang's array.
44

55
Supports Access, Enumerable and Collectable protocols.
66

7+
## Using Array with Mix
8+
To use array in your projects, add array as a dependency:
9+
10+
```
11+
def deps do
12+
[{:array, "~> 1.0.1"}]
13+
end
14+
```
15+
16+
Then run `mix deps.get` to install it.
17+
718
## Example
819

920
```

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ defmodule Array.Mixfile do
33

44
def project do
55
[app: :array,
6-
version: "1.0.0",
6+
version: "1.0.1",
77
elixir: ">= 1.0.0",
8-
description: "An elixir wrapper for Erlang's array.",
8+
description: "An elixir wrapper library for Erlang's array.",
99
package: package,
1010
deps: deps]
1111
end

0 commit comments

Comments
 (0)