@@ -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