Skip to content

Commit

Permalink
GCI Identify typo or grammar errors in OpenMRS core
Browse files Browse the repository at this point in the history
  • Loading branch information
collinsnji committed Dec 27, 2016
1 parent 1a086e9 commit acc7332
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Resources for Getting Started

Your contributions are what make OpenMRS an awesome Health IT system in developing countries. We want to make it as easy and fun as possible for you to contribute to the project and interact with the community. Before you get started contributing to OpenMRS, we encourage you to read both our [OpenMRS Developers Guide](http://go.openmrs.org/newdev-web) and our [Getting Started as a Developer](https://wiki.openmrs.org/x/MQAJ) wiki page.
Your contributions are what make OpenMRS an awesome Health IT system in developing countries. We want to make it as easy and fun as possible for you to contribute to the project and interact with the community. Before you get started contributing to OpenMRS, we encourage you to read both our [OpenMRS Developers Guide](http://om.rs/newdev) and our [Getting Started as a Developer](https://wiki.openmrs.org/x/MQAJ) wiki page.

## Reporting Bugs

Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/Cohort.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public Cohort(String name, String description, Collection patientsOrIds) {
}

/**
* Convenience contructor taking in a string that is a list of comma separated patient ids This
* Convenience constructor taking in a string that is a list of comma separated patient ids This
* constructor does not check whether the database contains patients with the given ids, but
* {@link org.openmrs.api.CohortService#saveCohort(Cohort)} will.
* @param commaSeparatedIds
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/Concept.java
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ public ConceptName getName(Locale locale) {
* @should return the name explicitly marked as locale preferred if any is present
* @should return the fully specified name in a locale if no preferred name is set
* @should return null if the only added name is an index term
* @should return name in broader locale incase none is found in specific one
* @should return name in broader locale in case none is found in specific one
*/
public ConceptName getName() {
if (getNames().size() == 0) {
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/PersonName.java
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public void setPrefix(String prefix) {
}

/**
* Convenience method to get all the names of this PersonName and concatonating them together
* Convenience method to get all the names of this PersonName and concatenating them together
* with spaces in between. If any part of {@link #getPrefix()}, {@link #getGivenName()},
* {@link #getMiddleName()}, etc are null, they are not included in the returned name
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* </bean>
* </pre>
* <p>
* These security annotations are similiar to the Commons Attributes approach, however they are
* These security annotations are similar to the Commons Attributes approach, however they are
* using Java 5 language-level metadata support.
*
* @see org.openmrs.annotation.Authorized
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/attribute/Attribute.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public interface Attribute<AT extends AttributeType, OT extends Customizable<?>>
void setOwner(OT owner);

/**
* @return the AttributeType that controls this attribute's behavior
* @return the AttributeType that controls the behavior of this attribute
*/
AT getAttributeType();

Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/logic/Duration.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static enum Units {
private Units units;

/**
* Private contructor used by the static methods on this class. Use the
* Private constructor used by the static methods on this class. Use the
* <code>Duration duration = Duration.days(5.0);</code> to get a duration object
*
* @param duration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public Message prepareMessage(Template template) throws MessageException {
}

/**
* Prepare a message based on a template and data used for variable subsitution within template.
* Prepare a message based on a template and data used for variable substitution within template.
*
* @param templateName name of the template to be used
* @param data data mapping used for variable substitution within template
Expand Down

0 comments on commit acc7332

Please sign in to comment.