Skip to content

Commit

Permalink
fix: diff
Browse files Browse the repository at this point in the history
  • Loading branch information
igas committed Jan 30, 2025
1 parent 66c3c6a commit af2c3a5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/config.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Config

if Mix.env() == :dev do
config :mix_test_watch,
clear: true
end
6 changes: 6 additions & 0 deletions lib/faker/industry/en.ex
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,12 @@ defmodule Faker.Industry.En do
iex> Faker.Industry.En.sub_sector()
"Electrical Components & Equipment"
iex> Faker.Industry.En.sub_sector()
"Publishing"
iex> Faker.Industry.En.sub_sector()
"Alternative Electricity"
iex> Faker.Industry.En.sub_sector()
"Forestry"
"""
@spec sub_sector() :: String.t()
sampler(:sub_sector, [
Expand Down
6 changes: 6 additions & 0 deletions lib/faker/vehicle.ex
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,12 @@ defmodule Faker.Vehicle do
iex> Faker.Vehicle.transmission()
"CVT"
iex> Faker.Vehicle.transmission()
"Automatic"
iex> Faker.Vehicle.transmission()
"Manual"
iex> Faker.Vehicle.transmission()
"Automanual"
"""
@spec transmission() :: String.t()
localize(:transmission)
Expand Down

0 comments on commit af2c3a5

Please sign in to comment.