diff --git a/docs/Migrating and deploying legacy monolithic .NET Framework applications to Windows containers .docx b/docs/Migrating and deploying legacy monolithic .NET Framework applications to Windows containers .docx deleted file mode 100644 index f056c0e81..000000000 Binary files a/docs/Migrating and deploying legacy monolithic .NET Framework applications to Windows containers .docx and /dev/null differ diff --git a/docs/architecting-and-developing-containerized-and-microservice-based-net-applications-ebook-early-draft.pdf b/docs/architecting-and-developing-containerized-and-microservice-based-net-applications-ebook-early-draft.pdf index c6811221f..c740b7c8d 100644 Binary files a/docs/architecting-and-developing-containerized-and-microservice-based-net-applications-ebook-early-draft.pdf and b/docs/architecting-and-developing-containerized-and-microservice-based-net-applications-ebook-early-draft.pdf differ diff --git a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs index a43c28417..495d887ba 100644 --- a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs +++ b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs @@ -5,7 +5,7 @@ using System.Runtime.Serialization; namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands { - // DDD and CQRS patterns comment: Note that it is recommened to implement immutable Commands + // DDD and CQRS patterns comment: Note that it is recommended to implement immutable Commands // In this case, its immutability is achieved by having all the setters as private // plus only being able to update the data just once, when creating the object through its constructor. // References on Immutable Commands: