Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix version info on development guide & minor spelling fix #994

Merged
merged 2 commits into from
Oct 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/teslamate/import.ex
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ defmodule TeslaMate.Import do
def handle_event(:internal, :import, :running, %Data{files: files} = data) do
Logger.info("Importing #{length(files)} file(s) ...")

case create_evennt_streams(data) do
case create_event_streams(data) do
{:error, reason} ->
{:next_state, {:error, reason}, {:next_event, :internal, :broadcast}}

Expand Down Expand Up @@ -209,7 +209,7 @@ defmodule TeslaMate.Import do
end
end

defp create_evennt_streams(%Data{files: files, timezone: tz}) do
defp create_event_streams(%Data{files: files, timezone: tz}) do
alias TeslaApi.Vehicle.State.Drive
alias TeslaApi.Vehicle, as: Veh

Expand Down
2 changes: 1 addition & 1 deletion website/docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_label: Development and Contributing

## Requirements

- **Elixir** >= 1.9
- **Elixir** >= 1.11
- **Postgres** >= 10
- An **MQTT broker** e.g. mosquitto (_optional_)

Expand Down