Просмотр исходного кода

Fixed some function names in the docs

Eric Mc Sween 5 лет назад
Родитель
Сommit
c413f4d8a4
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      libraries/object-persistor/README.md

+ 4 - 4
libraries/object-persistor/README.md

@@ -185,10 +185,10 @@ An integer containing the size, in bytes
 
 
 When using a secondary persistor, this returns the value from the secondary persistor if no objects are found on the primary.
 When using a secondary persistor, this returns the value from the secondary persistor if no objects are found on the primary.
 
 
-#### checkIfFileExists
+#### checkIfObjectExists
 
 
 ```JavaScript
 ```JavaScript
-async function checkIfFileExists(bucketName, key)
+async function checkIfObjectExists(bucketName, key)
 ```
 ```
 
 
 Returns whether an object exists
 Returns whether an object exists
@@ -204,10 +204,10 @@ A boolean representing whether the object exists
 
 
 When using a secondary persistor, returns true if the object exists on either the primary or secondary.
 When using a secondary persistor, returns true if the object exists on either the primary or secondary.
 
 
-#### copyFile
+#### copyObject
 
 
 ```JavaScript
 ```JavaScript
-async function copyFile(bucketName, sourceKey, destKey)
+async function copyObject(bucketName, sourceKey, destKey)
 ```
 ```
 
 
 Copies a object to another key, within a bucket.
 Copies a object to another key, within a bucket.