minor: document fixes

This commit is contained in:
Jay Shepherd 2009-12-23 11:12:46 -06:00
parent 3d103351da
commit 5ccfcf95ab
3 changed files with 4 additions and 4 deletions

View File

@ -210,11 +210,11 @@ module Mongo
end end
# Sends a message to the database, waits for a response, and raises # Sends a message to the database, waits for a response, and raises
# and exception if the operation has failed. # an exception if the operation has failed.
# #
# Takes a MongoDB opcode, +operation+, a message of class ByteBuffer, # Takes a MongoDB opcode, +operation+, a message of class ByteBuffer,
# +message+, the +db_name+, and an optional formatted +log_message+. # +message+, the +db_name+, and an optional formatted +log_message+.
# Sends the message to the databse, adding the necessary headers. # Sends the message to the database, adding the necessary headers.
def send_message_with_safe_check(operation, message, db_name, log_message=nil) def send_message_with_safe_check(operation, message, db_name, log_message=nil)
message_with_headers = add_message_headers(operation, message) message_with_headers = add_message_headers(operation, message)
message_with_check = last_error_message(db_name) message_with_check = last_error_message(db_name)

View File

@ -132,7 +132,7 @@ module Mongo
names.map {|name| name.sub(@name + '.', '')} names.map {|name| name.sub(@name + '.', '')}
end end
# Retruns an array of Collection instances, one for each collection in this # Retuns an array of Collection instances, one for each collection in this
# database. # database.
def collections def collections
collection_names.map do |collection_name| collection_names.map do |collection_name|

View File

@ -45,7 +45,7 @@ module Mongo
# Raised when a database operation fails. # Raised when a database operation fails.
class OperationFailure < MongoDBError; end class OperationFailure < MongoDBError; end
# Raised when a database operation fails. # Raised when a connection operation fails.
class ConnectionFailure < MongoDBError; end class ConnectionFailure < MongoDBError; end
# Raised when a client attempts to perform an invalid operation. # Raised when a client attempts to perform an invalid operation.