Skip to content

Commit d9218c3

Browse files
author
Tom Johnson
committed
Add links to RDF::Repository documentation
1 parent a322abe commit d9218c3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/rdf/repository.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ module RDF
4343
# Repositories support transactions with a variety of ACID semantics:
4444
#
4545
# Atomicity is indicated by `#supports?(:atomic_write)`. When atomicity is
46-
# supported, writes through `#transaction`, `#apply_changeset` and
47-
# `#delete_insert` are applied atomically.
46+
# supported, writes through {#transaction}, {#apply_changeset} and
47+
# {#delete_insert} are applied atomically.
4848
#
4949
# Consistency should be guaranteed, in general. Repositories that don't
5050
# support consistency, or that have specialized definitions of consistency
5151
# above those declared by the RDF data model, should advertise this fact in
5252
# their documentation.
5353
#
5454
# Isolation may be supported at various levels, indicated by
55-
# `#isolation_level`:
55+
# {#isolation_level}:
5656
# - `:read_uncommitted`: Inserts & deletes in an uncommitted transaction
5757
# scope may be visible to other transactions (or via `#each`, etc...)
5858
# - `:read_committed`: Inserts & deletes may be visible to other
@@ -64,8 +64,8 @@ module RDF
6464
# When two or more transactions attempt conflicting writes, only one of
6565
# them may succeed.
6666
#
67-
# Durability is noted via `RDF::Durable` support and `#durable?`
68-
# /`#nondurable?`.
67+
# Durability is noted via {RDF::Durable} support and {#durable?}
68+
# /{#nondurable?}.
6969
#
7070
# @example Transational read from a repository
7171
# repository.transaction do |tx|

0 commit comments

Comments
 (0)