Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sfdx-source/apex-common/main/classes/fflib_Application.cls
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public virtual class fflib_Application
* if set via the setMock method
*
* @remark If mock is set, the list of SObjectType in the mock could be different
* then the list of SObjectType specified in this method call
* than the list of SObjectType specified in this method call
**/
public virtual fflib_ISObjectUnitOfWork newInstance(List<SObjectType> objectTypes)
{
Expand All @@ -102,7 +102,7 @@ public virtual class fflib_Application
* if set via the setMock method
*
* @remark If mock is set, the list of SObjectType in the mock could be different
* then the list of SObjectType specified in this method call
* than the list of SObjectType specified in this method call
**/
public virtual fflib_ISObjectUnitOfWork newInstance(List<SObjectType> objectTypes, fflib_SObjectUnitOfWork.IDML dml)
{
Expand Down Expand Up @@ -139,7 +139,7 @@ public virtual class fflib_Application
* Note that this will not check the Apex Classes given actually implement the interfaces
* as this information is not presently available via the Apex runtime
*
* @param serviceInterfaceTypeByServiceImplType Map ofi interfaces to classes
* @param serviceInterfaceTypeByServiceImplType Map of interfaces to classes
**/
public ServiceFactory(Map<Type, Type> serviceInterfaceTypeByServiceImplType)
{
Expand Down Expand Up @@ -189,11 +189,11 @@ public virtual class fflib_Application
public SelectorFactory() { }

/**
* Consturcts a Selector Factory linking SObjectType's with Apex Classes implement the fflib_ISObjectSelector interface
* Constructs a Selector Factory linking SObjectType's with Apex Classes implement the fflib_ISObjectSelector interface
* Note that the factory does not check the given Apex Classes implement the interface
* currently this is not possible in Apex.
*
* @Param sObjectBySelectorType Map of SObjectType's to Selector Apex Classes
* @param sObjectBySelectorType Map of SObjectType's to Selector Apex Classes
**/
public SelectorFactory(Map<SObjectType, Type> sObjectBySelectorType)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public interface fflib_ISObjectUnitOfWork
**/
void commitWork();
/**
* Register a generic peace of work to be invoked during the commitWork phase
* Register a generic piece of work to be invoked during the commitWork phase
*
* @param work Work to be registered
**/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Helper class, roughly based on the Java version, but subclassed to assist in a number of use cases in this library
*
* NOTE: Aspects of this where developed before recent improvements to String handling, as such could likely be enhanced at this stage.
* NOTE: Aspects of this were developed before recent improvements to String handling, as such could likely be enhanced at this stage.
**/
public virtual class fflib_StringBuilder
{
Expand Down