Skip to content

Commit f8bda48

Browse files
committed
style: Consistent spelling
1 parent d17efcc commit f8bda48

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ mix devenv.new new my_lib --devenv elixir=1.17,minio --sup
8383
## How it Works
8484

8585
1. Runs the specified Mix task (e.g., `phx.new`, `igniter.new`, `new`)
86-
2. Initializes devenv in the created project directory
86+
2. Initialises devenv in the created project directory
8787
3. Generates `devenv.nix` with requested features
8888
4. Creates project-specific database configurations when applicable
8989

lib/mix/tasks/devenv.new.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ defmodule Mix.Tasks.Devenv.New do
111111

112112
case System.cmd("devenv", ["init"], stderr_to_stdout: true) do
113113
{_output, 0} ->
114-
Mix.shell().info("devenv initialized successfully")
114+
Mix.shell().info("devenv initialised successfully")
115115

116116
{output, exit_code} ->
117117
show_error_and_exit("""
118-
Failed to initialize devenv (exit code: #{exit_code}):
118+
Failed to initialise devenv (exit code: #{exit_code}):
119119
#{output}
120120
121121
Make sure devenv is installed: https://devenv.sh/getting-started/

test/devenv_new_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ defmodule DevenvNewTest do
121121
#!/bin/bash
122122
case "$1" in
123123
init)
124-
echo "devenv initialized successfully"
124+
echo "devenv initialised successfully"
125125
exit 0
126126
;;
127127
--version)

0 commit comments

Comments
 (0)