Skip to content

Commit

Permalink
remove dom from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstanceH committed Jan 15, 2025
1 parent 92b715e commit 3f66a26
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkg/factory/mto_shipment_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/models/mto_shipments.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions pkg/testdatagen/make_mto_shipment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3f66a26

Please sign in to comment.