Skip to content

Commit 1e79c32

Browse files
author
Jamie Hannaford
committed
Embolden text
1 parent 831f1a6 commit 1e79c32

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

docs/userguide/ObjectStore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In the example above, you are connecting to the ``DFW`` region of the cloud. Any
4646
$container = $objectStoreService->createContainer('logos');
4747
```
4848

49-
> Note: when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
49+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
5050
5151
### 4. Upload an object to the container.
5252

docs/userguide/ObjectStore/Storage/Container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If the response returned is `FALSE`, there was an API error - most likely due to
2626

2727
Container names must be valid strings between 0 and 256 characters. Forward slashes are not currently permitted.
2828

29-
> Note: when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
29+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
3030
3131
## List containers
3232

docs/userguide/ObjectStore/Storage/Object.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ setter methods:
2222

2323
There are three ways to upload a new file, each of which has different business needs.
2424

25-
> Note: Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
25+
> **Note:** Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
2626
for you.
2727

28-
> Note: when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
28+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
2929
3030
### To upload a single/basic file:
3131

@@ -104,7 +104,8 @@ To return a list of objects:
104104

105105
```php
106106
$files = $container->objectList();
107-
while ($file = $files->next()) {
107+
108+
foreach ($files as $file) {
108109
// ... do something
109110
}
110111
```

docs/userguide/ObjectStore/USERGUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For example, you may create a container called `logos` to hold all the image fil
4646

4747
A container may contain zero or more objects in it.
4848

49-
> Note: when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
49+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
5050
5151
### Create Container
5252

@@ -187,7 +187,7 @@ An **object** (sometimes referred to as a file) is the unit of storage in an Obj
187187

188188
For example, you may upload an object named `php-elephant.jpg`, a JPEG image file, to the `logos` container. Further, you may assign metadata to this object to indicate that the author of this object was someone named Jane Doe.
189189

190-
> Note: when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
190+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with `urlencode` before passing them in
191191
192192
### Upload Object
193193

0 commit comments

Comments
 (0)