Skip to content

Commit cf9fdee

Browse files
committed
Address review comments
1 parent 764f98b commit cf9fdee

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2161,7 +2161,7 @@
21612161
"bitstrings",
21622162
"case",
21632163
"enum",
2164-
"if",
2164+
"if",
21652165
"pattern-matching",
21662166
"recursion",
21672167
"tail-call-recursion",

exercises/practice/intergalactic-transmission/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
],
55
"files": {
66
"solution": [
7-
"lib/intergalactic_transmission.ex"
7+
"lib/transmission.ex"
88
],
99
"test": [
10-
"test/intergalactic_transmission_test.exs"
10+
"test/transmission_test.exs"
1111
],
1212
"example": [
1313
".meta/example.ex"
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
defmodule Transmission do
2-
import Bitwise
32

43
@doc """
54
Return the transmission sequence for a message.

exercises/practice/intergalactic-transmission/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule IntergalacticTransmission.MixProject do
33

44
def project do
55
[
6-
app: :intergalactic_transmission,
6+
app: :transmission,
77
version: "0.1.0",
88
# elixir: "~> 1.8",
99
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)