From 3f66a262d922e4d16b12c3d22f2c42a620778709 Mon Sep 17 00:00:00 2001 From: KonstanceH Date: Wed, 15 Jan 2025 20:53:59 +0000 Subject: [PATCH] remove dom from comments --- pkg/factory/mto_shipment_factory.go | 4 ++-- pkg/models/mto_shipments.go | 2 +- pkg/testdatagen/make_mto_shipment.go | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/factory/mto_shipment_factory.go b/pkg/factory/mto_shipment_factory.go index fd7adf838e4..89efcc51e2f 100644 --- a/pkg/factory/mto_shipment_factory.go +++ b/pkg/factory/mto_shipment_factory.go @@ -225,9 +225,9 @@ func BuildBaseMTOShipment(db *pop.Connection, customs []Customization, traits [] // BuildMTOShipment creates a single MTOShipment and associated set relationships // It will make a move record, if one is not provided. -// It will make pickup addresses if the shipment type is not one of (HHGOutOfNTSDom, PPM) +// It will make pickup addresses if the shipment type is not one of (HHGOutOfNTS, PPM) // It will make delivery addresses if the shipment type is not one of (HHGIntoNTSDom, PPM) -// It will make a storage facility if the shipment type is HHGOutOfNTSDom +// It will make a storage facility if the shipment type is HHGOutOfNTS func BuildMTOShipment(db *pop.Connection, customs []Customization, traits []Trait) models.MTOShipment { return buildMTOShipmentWithBuildType(db, customs, traits, mtoShipmentBuild) } diff --git a/pkg/models/mto_shipments.go b/pkg/models/mto_shipments.go index b79f5c33b7e..917e75b7978 100644 --- a/pkg/models/mto_shipments.go +++ b/pkg/models/mto_shipments.go @@ -38,7 +38,7 @@ const ( MTOShipmentTypeHHG MTOShipmentType = "HHG" // MTOShipmentTypeHHGIntoNTS is an HHG Shipment Type for going into NTS MTOShipmentTypeHHGIntoNTS MTOShipmentType = NTSRaw - // MTOShipmentTypeHHGOutOfNTS is an HHG Shipment Type for going out of NTS Domestic + // MTOShipmentTypeHHGOutOfNTS is an HHG Shipment Type for going out of NTS MTOShipmentTypeHHGOutOfNTS MTOShipmentType = NTSrRaw // MTOShipmentTypeMobileHome is a Shipment Type for MobileHome MTOShipmentTypeMobileHome MTOShipmentType = "MOBILE_HOME" diff --git a/pkg/testdatagen/make_mto_shipment.go b/pkg/testdatagen/make_mto_shipment.go index 1add2b88165..9bfb8127d15 100644 --- a/pkg/testdatagen/make_mto_shipment.go +++ b/pkg/testdatagen/make_mto_shipment.go @@ -13,10 +13,10 @@ import ( // makeMTOShipment creates a single MTOShipment and associated set relationships // It will make a move record, if one is not provided. -// It will make pickup addresses if the shipment type is not one of (HHGOutOfNTSDom, PPM) -// It will make delivery addresses if the shipment type is not one of (HHGOutOfNTSDom, PPM) +// It will make pickup addresses if the shipment type is not one of (HHGOutOfNTS, PPM) +// It will make delivery addresses if the shipment type is not one of (HHGOutOfNTS, PPM) // It will make a storage facility if the shipment type is -// HHGOutOfNTSDom +// HHGOutOfNTS // // Deprecated: use factory.BuildMTOShipment func makeMTOShipment(db *pop.Connection, assertions Assertions) models.MTOShipment {