diff --git a/doc_classes/Blackboard.xml b/doc_classes/Blackboard.xml
index 32a07208..3f8a9ad5 100644
--- a/doc_classes/Blackboard.xml
+++ b/doc_classes/Blackboard.xml
@@ -46,7 +46,7 @@
- Returns variable value or [param default] if variable doesn't exist. If [param complain] is [code]true[/code], an error will be printed if variable doesn't exist.
+ Returns variable value or [param default] if variable doesn't exist. If [param complain] is [code]true[/code], an error will be printed if variable doesn't exist. If the variable doesn't exist in the current [Blackboard] scope, it will look in the parent scope [Blackboard] to find it.
@@ -98,7 +98,7 @@
- Assigns a value to a Blackboard variable.
+ Assigns a value to a variable in the current Blackboard scope. If the variable doesn't exist, it will be created. If the variable already exists in the parent scope, the parent scope value will NOT be changed.