Skip to content

Commit 52b0a57

Browse files
authored
Fix a typo and minor inconsistencies in README.md (#375)
* Fix typo in README.md * Fix inconsitency in periods at the end of itemization * Fix inconsitency in periods in xml docs
1 parent b9049ab commit 52b0a57

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public void Using_The_Faker_Facade()
232232
Item = faker.Lorem.Sentence(),
233233
Quantity = faker.Random.Number(1, 10)
234234
};
235-
o.Dump()
235+
o.Dump();
236236
}
237237
```
238238

@@ -334,16 +334,16 @@ In the examples above, all three alternative styles of using **Bogus** produce t
334334
* `Recent` - Get a random `DateTime` within the last few days.
335335
* `RecentOffset` - Get a random `DateTimeOffset` within the last few days.
336336
* `Timespan` - Get a random `TimeSpan`.
337-
* `Month` - Get a random month
338-
* `Weekday` - Get a random weekday
337+
* `Month` - Get a random month.
338+
* `Weekday` - Get a random weekday.
339339
* **`Finance`**
340340
* `Account` - Get an account number. Default length is 8 digits.
341341
* `AccountName` - Get an account name. Like "savings", "checking", "Home Loan" etc..
342342
* `Amount` - Get a random amount. Default 0 - 1000.
343343
* `TransactionType` - Get a transaction type: "deposit", "withdrawal", "payment", or "invoice".
344344
* `Currency` - Get a random currency.
345345
* `CreditCardNumber` - Generate a random credit card number with valid Luhn checksum.
346-
* `CreditCardCvv` - Generate a credit card CVV
346+
* `CreditCardCvv` - Generate a credit card CVV.
347347
* `BitcoinAddress` - Generates a random Bitcoin address.
348348
* `EthereumAddress` - Generate a random Ethereum address.
349349
* `RoutingNumber` - Generates an ABA routing number with valid check digit.
@@ -432,7 +432,7 @@ In the examples above, all three alternative styles of using **Bogus** produce t
432432
* `DirectoryPath` - Get a random directory path (Unix).
433433
* `FilePath` - Get a random file path (Unix).
434434
* `CommonFileName` - Generates a random file name with a common file extension.
435-
* `MimeType` - Get a random mime type
435+
* `MimeType` - Get a random mime type.
436436
* `CommonFileType` - Returns a commonly used file type.
437437
* `CommonFileExt` - Returns a commonly used file extension.
438438
* `FileType` - Returns any file type available as mime-type.
@@ -441,8 +441,8 @@ In the examples above, all three alternative styles of using **Bogus** produce t
441441
* `Version` - Get a random `Version`.
442442
* `Exception` - Get a random `Exception` with a fake stack trace.
443443
* `AndroidId` - Get a random GCM registration ID.
444-
* `ApplePushToken` - Get a random Apple Push Token
445-
* `BlackBerryPin` - Get a random BlackBerry Device PIN
444+
* `ApplePushToken` - Get a random Apple Push Token.
445+
* `BlackBerryPin` - Get a random BlackBerry Device PIN.
446446
* **`Vehicle`**
447447
* `Vin` - Generate a vehicle identification number (VIN).
448448
* `Manufacturer` - Get a vehicle manufacture name. IE: Toyota, Ford, Porsche.

Source/Bogus/DataSets/Date.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public TimeSpan Timespan(TimeSpan? maxSpan = null)
219219
}
220220

221221
/// <summary>
222-
/// Get a random month
222+
/// Get a random month.
223223
/// </summary>
224224
public string Month(bool abbreviation = false, bool useContext = false)
225225
{
@@ -238,7 +238,7 @@ public string Month(bool abbreviation = false, bool useContext = false)
238238
}
239239

240240
/// <summary>
241-
/// Get a random weekday
241+
/// Get a random weekday.
242242
/// </summary>
243243
public string Weekday(bool abbreviation = false, bool useContext = false)
244244
{

Source/Bogus/DataSets/Finance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ string RegexStyleStringParse(string str = "")
275275
}
276276

277277
/// <summary>
278-
/// Generate a credit card CVV
278+
/// Generate a credit card CVV.
279279
/// </summary>
280280
public string CreditCardCvv()
281281
{

Source/Bogus/DataSets/System.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public string CommonFileName(string ext = null)
138138

139139

140140
/// <summary>
141-
/// Get a random mime type
141+
/// Get a random mime type.
142142
/// </summary>
143143
/// <returns>
144144
/// A random mime type.
@@ -379,21 +379,21 @@ public string AndroidId()
379379
}
380380

381381
/// <summary>
382-
/// Get a random Apple Push Token
382+
/// Get a random Apple Push Token.
383383
/// </summary>
384384
/// <returns>
385-
/// A random Apple Push Token
385+
/// A random Apple Push Token.
386386
/// </returns>
387387
public string ApplePushToken()
388388
{
389389
return this.Random.String2(64, Chars.HexLowerCase);
390390
}
391391

392392
/// <summary>
393-
/// Get a random BlackBerry Device PIN
393+
/// Get a random BlackBerry Device PIN.
394394
/// </summary>
395395
/// <returns>
396-
/// A random BlackBerry Device PIN
396+
/// A random BlackBerry Device PIN.
397397
/// </returns>
398398
public string BlackBerryPin()
399399
{

0 commit comments

Comments
 (0)