add clarification on how to get binary properties from a resource
diff --git a/src/main/jbake/content/documentation/the-sling-engine/resources.md b/src/main/jbake/content/documentation/the-sling-engine/resources.md
index 8008333..44586e4 100644
--- a/src/main/jbake/content/documentation/the-sling-engine/resources.md
+++ b/src/main/jbake/content/documentation/the-sling-engine/resources.md
@@ -8,11 +8,11 @@
 
 ## What is a Resource
 
-The Resource is one of the central parts of Sling. Extending from JCR's *Everything is Content*, Sling assumes *Everthing is a Resource*. Thus Sling is maintaining a virtual tree of resources, which is a merger of the actual contents in the JCR Repository and resources provided by so called resource providers. By doing this Sling fits very well in the paradigma of the REST architecture.
+The Resource is one of the central parts of Sling. Extending from JCR's *Everything is Content*, Sling assumes *Everthing is a Resource*. Thus Sling is maintaining a virtual tree of resources, which is a merger of the actual contents by so called resource providers (one of them usually the JCR Resource Provider). By doing this Sling fits very well in the paradigma of the REST architecture.
 
 ### Resource Properties
 
-Resources have a number of essentiall properties:
+Resources have a number of essential properties:
 
 | Property | Description |
 |---|---|
@@ -25,6 +25,10 @@
 
 For a complete description of the `Resource` interface, please refer to the [`Resource`][2] JavaDoc.
 
+The properties are either exposed via the `ValueMap` or `ModifiableValueMap` adaptable or by calling `Resource.getValueMap()`.
+
+To get the main binary property from a given resource one can adapt it to an `InputStream`. Most resource providers return the underlying wrapper binary in that case.
+
 ### Resource Types
 
 The exact method of setting the resource type for a Resource depends on the actual Resource Provider. For the four main Resource Provider