diff options
Diffstat (limited to 'lang/csharp/src/SecondaryDatabase.cs')
-rw-r--r-- | lang/csharp/src/SecondaryDatabase.cs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lang/csharp/src/SecondaryDatabase.cs b/lang/csharp/src/SecondaryDatabase.cs index ff64fff3..ca0a2381 100644 --- a/lang/csharp/src/SecondaryDatabase.cs +++ b/lang/csharp/src/SecondaryDatabase.cs @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved. * */ using System; @@ -59,13 +59,13 @@ namespace BerkeleyDB { /// <remarks> /// <para> /// If <see cref="DatabaseConfig.AutoCommit"/> is set, the operation - /// will be implicitly transaction protected. Note that transactionally - /// protected operations on a datbase object requires the object itself + /// is implicitly transaction protected. Transactionally + /// protected operations on a database object requires the object itself /// be transactionally protected during its open. /// </para> /// </remarks> /// <param name="Filename"> - /// The name of an underlying file that will be used to back the + /// The name of an underlying file used to back the /// database. /// </param> /// <param name="cfg">The database's configuration</param> @@ -90,13 +90,13 @@ namespace BerkeleyDB { /// </para> /// <para> /// If <see cref="DatabaseConfig.AutoCommit"/> is set, the operation - /// will be implicitly transaction protected. Note that transactionally - /// protected operations on a datbase object requires the object itself + /// is implicitly transaction protected. Transactionally + /// protected operations on a database object requires the object itself /// be transactionally protected during its open. /// </para> /// </remarks> /// <param name="Filename"> - /// The name of an underlying file that will be used to back the + /// The name of an underlying file used to back the /// database. /// </param> /// <param name="DatabaseName"> @@ -121,13 +121,13 @@ namespace BerkeleyDB { /// <remarks> /// <para> /// If <see cref="DatabaseConfig.AutoCommit"/> is set, the operation - /// will be implicitly transaction protected. Note that transactionally - /// protected operations on a datbase object requires the object itself + /// is implicitly transaction protected. Transactionally + /// protected operations on a database object requires the object itself /// be transactionally protected during its open. /// </para> /// </remarks> /// <param name="Filename"> - /// The name of an underlying file that will be used to back the + /// The name of an underlying file used to back the /// database. /// </param> /// <param name="cfg">The database's configuration</param> @@ -160,13 +160,13 @@ namespace BerkeleyDB { /// </para> /// <para> /// If <see cref="DatabaseConfig.AutoCommit"/> is set, the operation - /// will be implicitly transaction protected. Note that transactionally - /// protected operations on a datbase object requires the object itself + /// is implicitly transaction protected. Transactionally + /// protected operations on a database object requires the object itself /// be transactionally protected during its open. /// </para> /// </remarks> /// <param name="Filename"> - /// The name of an underlying file that will be used to back the + /// The name of an underlying file used to back the /// database. /// </param> /// <param name="DatabaseName"> @@ -253,7 +253,7 @@ namespace BerkeleyDB { /* * We need a managed array to copy each DBT into and then we'll * copy the managed array to the native array we just allocated. - * We're not able to copy native -> native. + * We are not able to copy native -> native. */ byte[] arr = new byte[nrecs * dbt_sz]; IntPtr p; |