From a5665552aaf494aac37f5ac4f9694122f71f69d9 Mon Sep 17 00:00:00 2001
From: Jonathan Harris <jonathan@marginal.org.uk>
Date: Sat, 9 Jan 2016 16:51:05 +0000
Subject: [PATCH] Doc correction.

---
 PLUGINS.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/PLUGINS.md b/PLUGINS.md
index 43d16178..9f23bcc6 100644
--- a/PLUGINS.md
+++ b/PLUGINS.md
@@ -40,8 +40,8 @@ def plugin_prefs(parent):
    Return a TK Frame for adding to the EDMC settings dialog.
    """
    frame = nb.Frame(parent)
-   nb.Label(prefs, text="Hello").grid()
-   nb.Label(prefs, text="Commander").grid()
+   nb.Label(frame, text="Hello").grid()
+   nb.Label(frame, text="Commander").grid()
    
    return frame
 ```