Skip to content

Commit

Permalink
typos again
Browse files Browse the repository at this point in the history
  • Loading branch information
burner committed Oct 8, 2021
1 parent 202697d commit 636e78b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 94 deletions.
4 changes: 2 additions & 2 deletions fakerjsgenerator/source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ string[] buildFile(string ll, FakerData entry, string[] toOverride) {

if(ll == "en") {
methods ~= gen.buildIbanAndBic();
methods ~= ["addressLatitude", "addressLongitude", "fianceAccount",
"fianceRoutingNumber", "financeMask", "financeBitcoinAddress",
methods ~= ["addressLatitude", "addressLongitude", "financeAccount",
"financeRoutingNumber", "financeMask", "financeBitcoinAddress",
"loremSentance", "loremSentances", "loremParagraph",
"loremParagraphs", "loremText", "phoneNumber"];
}
Expand Down
4 changes: 2 additions & 2 deletions fakerjsgenerator/source/generator.d
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class Faker {
}
///
string fianceAccount(size_t length = 8) {
string financeAccount(size_t length = 8) {
string s;
foreach(i; 0 .. length) {
s ~= "#";
Expand All @@ -102,7 +102,7 @@ class Faker {
}
///
string fianceRoutingNumber() {
string financeRoutingNumber() {
import std.conv : to;
import std.math : ceil;
auto routingNumber = digitBuild("########");
Expand Down
4 changes: 2 additions & 2 deletions source/faked/base.d
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Faker {
}

///
string fianceAccount(size_t length = 8) {
string financeAccount(size_t length = 8) {
string s;
foreach(i; 0 .. length) {
s ~= "#";
Expand All @@ -79,7 +79,7 @@ class Faker {
}

///
string fianceRoutingNumber() {
string financeRoutingNumber() {
import std.conv : to;
import std.math : ceil;
auto routingNumber = digitBuild("########");
Expand Down
Loading

0 comments on commit 636e78b

Please sign in to comment.