From 7ba26ab1403872cdb9e342960052810b10bd3c57 Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Wed, 27 Mar 2019 13:23:38 -0500 Subject: [PATCH] addenda{12,16}: fixup examples for city/state and country/postal code I noticed the examples didn't match the description. --- addenda12.go | 4 ++-- addenda16.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addenda12.go b/addenda12.go index 77968ef49..5e078c4a2 100644 --- a/addenda12.go +++ b/addenda12.go @@ -25,11 +25,11 @@ type Addenda12 struct { // Originator City & State / Province // Data elements City and State / Province should be separated with an asterisk (*) as a delimiter // and the field should end with a backslash (\). - // For example: San FranciscoCA. + // For example: San Francisco*CA\ OriginatorCityStateProvince string `json:"originatorCityStateProvince"` // Originator Country & Postal Code // Data elements must be separated by an asterisk (*) and must end with a backslash (\) - // For example: US10036\ + // For example: US*10036\ OriginatorCountryPostalCode string `json:"originatorCountryPostalCode"` // reserved - Leave blank reserved string diff --git a/addenda16.go b/addenda16.go index df0aa4eb3..9c5c78a7e 100644 --- a/addenda16.go +++ b/addenda16.go @@ -24,11 +24,11 @@ type Addenda16 struct { // Receiver City & State / Province // Data elements City and State / Province should be separated with an asterisk (*) as a delimiter // and the field should end with a backslash (\). - // For example: San FranciscoCA. + // For example: San Francisco*CA\ ReceiverCityStateProvince string `json:"receiverCityStateProvince"` // Receiver Country & Postal Code // Data elements must be separated by an asterisk (*) and must end with a backslash (\) - // For example: US10036\ + // For example: US*10036\ ReceiverCountryPostalCode string `json:"receiverCountryPostalCode"` // reserved - Leave blank reserved string