From e1f4e27b1bc6d3e5175fd13afeb21a734b26d324 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 21 Jan 2013 11:44:19 -0600 Subject: [PATCH] Update docs for v2 provider interface for MachineState --- lib/vagrant/plugin/v2/provider.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/vagrant/plugin/v2/provider.rb b/lib/vagrant/plugin/v2/provider.rb index 374d126bb..60cd5c217 100644 --- a/lib/vagrant/plugin/v2/provider.rb +++ b/lib/vagrant/plugin/v2/provider.rb @@ -56,9 +56,10 @@ module Vagrant end # This should return the state of the machine within this provider. - # The state can be any symbol. + # The state must be an instance of {MachineState}. Please read the + # documentation of that class for more information. # - # @return [Symbol] + # @return [MachineState] def state nil end