From ca24e0a516766d4174d2f76f8618216a7f8f1324 Mon Sep 17 00:00:00 2001 From: Teemu Matilainen Date: Sun, 22 Dec 2013 00:15:08 -0300 Subject: [PATCH] website/docs: Fix some typos in plugin docs --- website/docs/source/v2/plugins/guest-capabilities.html.md | 6 +++--- website/docs/source/v2/plugins/guests.html.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/source/v2/plugins/guest-capabilities.html.md b/website/docs/source/v2/plugins/guest-capabilities.html.md index 2248c0f9e..14d27b4dd 100644 --- a/website/docs/source/v2/plugins/guest-capabilities.html.md +++ b/website/docs/source/v2/plugins/guest-capabilities.html.md @@ -44,7 +44,7 @@ Guest capabilities are defined by calling the `guest_capability` method, which takes two parameters: the guest to add the capability to, and the name of the capability itself. Then, the block argument returns a class that implements a method named the same as the capability. This is -coverd in more detail in the next section. +covered in more detail in the next section. ## Implementation @@ -54,7 +54,7 @@ on the class returned from the `guest_capability` component, meaning that if it is an instance method, an instance should be returned. In general, class methods are used for capabilities. For example, here -is the imlementation for the capability above: +is the implementation for the capability above: ```ruby module Cap @@ -67,7 +67,7 @@ end ``` All capabilities get the Vagrant machine object as the first argument. -Additional arguments are deterined by the specific capability, so view the +Additional arguments are determined by the specific capability, so view the documentation or usage of the capability you're trying to implement for more information. diff --git a/website/docs/source/v2/plugins/guests.html.md b/website/docs/source/v2/plugins/guests.html.md index 900d9aae3..529ead41f 100644 --- a/website/docs/source/v2/plugins/guests.html.md +++ b/website/docs/source/v2/plugins/guests.html.md @@ -51,7 +51,7 @@ is booted in order to determine what operating system the guest is running. If you detect that it is your operating system, return `true` from `detect?`. Otherwise, return `false`. -Communication channels to the machine are guranteed to be running at this +Communication channels to the machine are guaranteed to be running at this point, so the most common way to detect the operating system is to do some basic testing: