Skip to content

Commit 1f00e01

Browse files
committed
Fixed doc typos in Mix.Archive
1 parent a7fa433 commit 1f00e01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mix/lib/mix/archive.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ defmodule Mix.Archive do
55
An archive is a zip file containing the app and beam files.
66
A valid archive must be named with the name of the application and
77
it should contain the relative paths beginning with the application
8-
name, e.g. root of zip file should be `my_app/ebin/Elixir.My.App.beam`.
8+
name, e.g. the root of the zip file should be `my_app/ebin/Elixir.My.App.beam`.
99
"""
1010

1111
@doc """
12-
Returns the archive name based on the app and version.
12+
Returns the archive name based on `app` and version.
1313
"""
1414
def name(app, nil), do: "#{app}.ez"
1515
def name(app, vsn), do: "#{app}-#{vsn}.ez"

0 commit comments

Comments
 (0)