lib/groupdocs/document.rb in groupdocs-1.5.8 vs lib/groupdocs/document.rb in groupdocs-1.5.9
- old
+ new
@@ -1134,11 +1134,11 @@
Document::Change.new(change)
end
end
#
- # @Changed in realese 1.5.8
+ # @Changed in release 1.5.9
# Returns an array of changes in document.
#
# @example
# document_one = GroupDocs::Storage::Folder.list![0].to_document
# document_two = GroupDocs::Storage::Folder.list![1].to_document
@@ -1153,20 +1153,20 @@
#
def changes!(access = {})
api = Api::Request.new do |request|
request[:access] = access
request[:method] = :GET
- request[:path] = '/comparison/public/#{file.guid}/changes'
+ request[:path] = "/comparison/public/#{file.guid}/changes"
end
json = api.execute!
json[:changes].map do |change|
Document::Change.new(change)
end
end
#
- # Changed in realese 1.5.8
+ # Changed in release 1.5.8
# Download comparison result file.
#
# @example
# document_one = GroupDocs::Storage::Folder.list![0].to_document
# document_two = GroupDocs::Storage::Folder.list![1].to_document