Current section

40 Versions

Jump to

Compare versions

4 files changed
+5 additions
-4 deletions
  @@ -1,6 +1,6 @@
1 1 # Islands Request
2 2
3 - Defines the `request` type for the _Game of Islands_.
3 + Defines the request type for the _Game of Islands_.
4 4
5 5 ## Installation
  @@ -30,4 +30,4 @@
30 30 {<<"optional">>,false},
31 31 {<<"repository">>,<<"hexpm">>},
32 32 {<<"requirement">>,<<"~> 0.1">>}]]}.
33 - {<<"version">>,<<"0.1.23">>}.
33 + {<<"version">>,<<"0.1.24">>}.
  @@ -3,13 +3,14 @@
3 3 # └───────────────────────────────────────────────────────────────────────┘
4 4 defmodule Islands.Request do
5 5 @moduledoc """
6 - Defines the `request` type for the _Game of Islands_.
6 + Defines the request type for the _Game of Islands_.
7 7
8 8 ##### Inspired by the book [Functional Web Development](https://pragprog.com/book/lhelph/functional-web-development-with-elixir-otp-and-phoenix) by Lance Halvorsen.
9 9 """
10 10
11 11 alias Islands.{Coord, Island, Player, PlayerID}
12 12
13 + @typedoc "Request for the Game of Islands"
13 14 @type t ::
14 15 {}
15 16 | {:add_player, Player.name(), Player.gender(), pid}
  @@ -4,7 +4,7 @@ defmodule Islands.Request.MixProject do
4 4 def project do
5 5 [
6 6 app: :islands_request,
7 - version: "0.1.23",
7 + version: "0.1.24",
8 8 elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Request",