Skip to content

Commit

Permalink
TRUNK-5559 - Fixed typos in javadocs of FullTextSessionFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
wluyima20 committed Jun 15, 2019
1 parent d5a78ab commit 7f01c83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/main/java/org/openmrs/FullTextSessionFactory.java
Expand Up @@ -19,7 +19,7 @@
/**
* An instance of this class provides a factory for obtaining {@link FullTextSession} instances.
* Having this factory as a spring bean provides a mechanism that allows external code and modules
* to advise the factory. It is highly recommended to use ths factory to create instances of the
* to advise the factory. It is highly recommended to use this factory to create instances of the
* {@link FullTextSession} rather than directly calling {@link Search#getFullTextSession(Session)}
* for proper functionality.
*
Expand All @@ -32,9 +32,9 @@ public class FullTextSessionFactory {
private SessionFactory sessionFactory;

/**
* Obtains the a {@link FullTextSession} instance.
* Obtains a {@link FullTextSession} instance.
*
* @return a {@link FullTextSession object}
* @return {@link FullTextSession} object
*/
public FullTextSession getFullTextSession() {
return Search.getFullTextSession(sessionFactory.getCurrentSession());
Expand Down

0 comments on commit 7f01c83

Please sign in to comment.