We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fa433 commit 1f00e01Copy full SHA for 1f00e01
lib/mix/lib/mix/archive.ex
@@ -5,11 +5,11 @@ defmodule Mix.Archive do
5
An archive is a zip file containing the app and beam files.
6
A valid archive must be named with the name of the application and
7
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`.
+ name, e.g. the root of the zip file should be `my_app/ebin/Elixir.My.App.beam`.
9
"""
10
11
@doc """
12
- Returns the archive name based on the app and version.
+ Returns the archive name based on `app` and version.
13
14
def name(app, nil), do: "#{app}.ez"
15
def name(app, vsn), do: "#{app}-#{vsn}.ez"
0 commit comments