aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mnesia/doc
diff options
context:
space:
mode:
authorDerek Brown <[email protected]>2014-12-26 11:52:45 -0500
committerDerek Brown <[email protected]>2014-12-26 11:52:45 -0500
commit5c4ef6f42786164a09c6ed03e82fe66879b5fe2d (patch)
tree60e17e3306df4f3d1e9adb722ea0aa97ed971fb4 /lib/mnesia/doc
parente2a09281ec8d60cd47f86caa59d41d3cd945d8bc (diff)
downloadotp-5c4ef6f42786164a09c6ed03e82fe66879b5fe2d.tar.gz
otp-5c4ef6f42786164a09c6ed03e82fe66879b5fe2d.tar.bz2
otp-5c4ef6f42786164a09c6ed03e82fe66879b5fe2d.zip
Fix grammar
Diffstat (limited to 'lib/mnesia/doc')
-rw-r--r--lib/mnesia/doc/src/mnesia.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mnesia/doc/src/mnesia.xml b/lib/mnesia/doc/src/mnesia.xml
index 268dc18e65..c23c2cb226 100644
--- a/lib/mnesia/doc/src/mnesia.xml
+++ b/lib/mnesia/doc/src/mnesia.xml
@@ -151,9 +151,9 @@ If a new item is inserted with the same key as
</item>
<item>
<p><c>local_content</c> When an application requires
- tables whose contents is local to each node,
+ tables whose contents are local to each node,
<c>local_content</c> tables may be used. The name of the
- table is known to all Mnesia nodes, but its contents is
+ table is known to all Mnesia nodes, but its contents are
unique on each node. This means that access to such a table
must be done locally. Set the <c>local_content</c> field to
<c>true</c> if you want to enable the <c>local_content</c>
@@ -579,7 +579,7 @@ mnesia:add_table_index(person, age)
<desc>
<p>The tables are backed up to external media using the backup
module <c>BackupMod</c>. Tables with the local contents
- property is being backed up as they exist on the current
+ property are backed up as they exist on the current
node. <c>BackupMod</c> is the default backup callback
module obtained by
<c>mnesia:system_info(backup_module)</c>. See the User's