# File lib_core/rucy/document.rb, line 640
    def find(path)
      if (doc_pair = search(@mount_map, path)) then
        document, mount_path = doc_pair
        if (mount_path.empty?) then
          mount_path = '/'
        end
        return document, mount_path
      end

      nil
    end