Add a few more documentation fixes
4 files changed, 8 insertions(+), 7 deletions(-)

M README.rdoc
M lib/wordnet/lexicon.rb
M lib/wordnet/model.rb
M lib/wordnet/synset.rb
M README.rdoc +3 -2
@@ 14,8 14,9 @@ synonym sets.
 This library uses SqlUNET[http://sqlunet.sourceforge.net/], which is a
 conversion of the WordNet (along with a number of other linguistic databases)
 lexicon flatfiles into a relational database format. You can either install the
-'wordnet-defaultdb' gem, which packages up the SQLite3 version of SqlUNet,
-or install your own and point the lexicon at it by passing {Sequel connection
+{wordnet-defaultdb}[https://rubygems.org/gems/wordnet-defaultdb] gem, which
+packages up the SQLite3 version of SqlUNet, or install your own and point the
+lexicon at it by passing {Sequel connection
 parameters}[http://sequel.jeremyevans.net/rdoc/files/doc/opening_databases_rdoc.html]
 to the constructor.
 

          
M lib/wordnet/lexicon.rb +1 -1
@@ 17,7 17,7 @@ require 'wordnet/model'
 # == Creating a Lexicon
 #
 # To create a Lexicon, point it at a database using {Sequel database connection
-# criteria}[http://sequel.rubyforge.org/rdoc/files/doc/opening_databases_rdoc.html]:
+# criteria}[http://sequel.jeremyevans.net/rdoc/files/doc/opening_databases_rdoc.html]:
 #
 #     lex = WordNet::Lexicon.new( 'postgres://localhost/wordnet31' )
 #     # => #<WordNet::Lexicon:0x7fd192a76668 postgres://localhost/wordnet31>

          
M lib/wordnet/model.rb +1 -1
@@ 16,7 16,7 @@ module WordNet
 
 
 	# The base WordNet database-backed domain class. It's a subclass of Sequel::Model, so
-	# you'll first need to be familiar with Sequel (http://sequel.rubyforge.org/) and
+	# you'll first need to be familiar with Sequel (http://sequel.jeremyevans.net/) and
 	# especially its Sequel::Model ORM.
 	class Model
 		extend Loggability

          
M lib/wordnet/synset.rb +3 -3
@@ 101,9 101,9 @@ require 'wordnet/model'
 # API if you need to do something not provided by a high-level method.
 #
 # In order to make use of this API, you'll need to be familiar with
-# {Sequel}[http://sequel.rubyforge.org/], especially
-# {Datasets}[http://sequel.rubyforge.org/rdoc/files/doc/dataset_basics_rdoc.html] and
-# {Model Associations}[http://sequel.rubyforge.org/rdoc/files/doc/association_basics_rdoc.html].
+# {Sequel}[http://sequel.jeremyevans.net/], especially
+# {Datasets}[http://sequel.jeremyevans.net/rdoc/files/doc/dataset_basics_rdoc.html] and
+# {Model Associations}[http://sequel.jeremyevans.net/rdoc/files/doc/association_basics_rdoc.html].
 # Most of Ruby-WordNet's functionality is implemented in terms of one or both
 # of these.
 #