[hibernate-commits] Hibernate SVN: r18423 - core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/cfg.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jan 6 12:52:44 EST 2010


Author: stliu
Date: 2010-01-06 12:52:44 -0500 (Wed, 06 Jan 2010)
New Revision: 18423

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/cfg/Environment.java
Log:
minor change, correct javadoc spell

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/cfg/Environment.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/cfg/Environment.java	2010-01-06 17:49:11 UTC (rev 18422)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/cfg/Environment.java	2010-01-06 17:52:44 UTC (rev 18423)
@@ -84,7 +84,7 @@
  * <tr>
  *   <td><tt>hibernate.connection.provider_class</tt></td>
  *   <td>classname of <tt>org.hibernate.connection.ConnectionProvider</tt>
- *   subclass (if not specified hueristics are used)</td>
+ *   subclass (if not specified heuristics are used)</td>
  * </tr>
  * <tr><td><tt>hibernate.connection.username</tt></td><td>database username</td></tr>
  * <tr><td><tt>hibernate.connection.password</tt></td><td>database password</td></tr>
@@ -109,7 +109,7 @@
  * </tr>
  * <tr>
  *   <td><tt>hibernate.connection.datasource</tt></td>
- *   <td>databasource JNDI name (when using <tt>javax.sql.Datasource</tt>)</td>
+ *   <td>datasource JNDI name (when using <tt>javax.sql.Datasource</tt>)</td>
  * </tr>
  * <tr>
  *   <td><tt>hibernate.jndi.url</tt></td><td>JNDI <tt>InitialContext</tt> URL</td>
@@ -290,7 +290,7 @@
 	public static final String USE_STREAMS_FOR_BINARY = "hibernate.jdbc.use_streams_for_binary";
 	/**
 	 * Use JDBC scrollable <tt>ResultSet</tt>s. This property is only necessary when there is
-	 * no <tt>ConnectionProvider</tt>, ie. the user is supplying JDBC connections.
+	 * no <tt>ConnectionProvider</tt>, i.e. the user is supplying JDBC connections.
 	 */
 	public static final String USE_SCROLLABLE_RESULTSET = "hibernate.jdbc.use_scrollable_resultset";
 	/**
@@ -430,7 +430,7 @@
 	 */
 	public static final String USE_SECOND_LEVEL_CACHE = "hibernate.cache.use_second_level_cache";
 	/**
-	 * Optimize the cache for mimimal puts instead of minimal gets
+	 * Optimize the cache for minimal puts instead of minimal gets
 	 */
 	public static final String USE_MINIMAL_PUTS = "hibernate.cache.use_minimal_puts";
 	/**
@@ -507,7 +507,7 @@
     public static final String DEFAULT_ENTITY_MODE = "hibernate.default_entity_mode";
 
     /**
-     * The jacc context id of the deployment
+     * The JACC context id of the deployment
      */
     public static final String JACC_CONTEXTID = "hibernate.jacc_context_id";
 



More information about the hibernate-commits mailing list