1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Fix typos in comments (#2876)

This commit is contained in:
Jim Hays
2023-05-09 11:38:47 -04:00
committed by GitHub
parent 0bd0910c39
commit f9038472ce
12 changed files with 13 additions and 13 deletions

View File

@ -140,7 +140,7 @@ public class StripePaymentService : IPaymentService
{
Country = taxInfo.BillingAddressCountry,
PostalCode = taxInfo.BillingAddressPostalCode,
// Line1 is required in Stripe's API, suggestion in Docs is to use Business Name intead.
// Line1 is required in Stripe's API, suggestion in Docs is to use Business Name instead.
Line1 = taxInfo.BillingAddressLine1 ?? string.Empty,
Line2 = taxInfo.BillingAddressLine2,
City = taxInfo.BillingAddressCity,