diff --git a/Button.md b/Button.md
index 0d39857..29f4b7c 100644
--- a/Button.md
+++ b/Button.md
@@ -9,7 +9,7 @@ Sets the displayed button text
local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aButton = mainFrame:addButton("myFirstButton"):setText("Click"):show() -- you could also use :setValue() instead of :setText() - no difference
````
-**parameters:** string text
+**Arguments:** string text
**returns:** self
# Examples
diff --git a/Pane.md b/Pane.md
new file mode 100644
index 0000000..ac97aa7
--- /dev/null
+++ b/Pane.md
@@ -0,0 +1,6 @@
+Panes are very simple sizeable background objects.
+
+The following list is only available to panes:
+Remember pane also inherits from [object](https://github.com/NoryiE/basalt/wiki/Object):
+
+Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the [object](https://github.com/NoryiE/basalt/wiki/Object) wikipage.