@@ -192,7 +192,7 @@ public void shutdown() throws IOException {
192192 * Trust all HTTPS certificates presented by the server. This is e.g. used
193193 * to work against a Nextcloud instance with a self-signed certificate.
194194 *
195- * @param trustAllCertificates Do we accep self signed certificates or not
195+ * @param trustAllCertificates Do we accept self- signed certificates or not
196196 */
197197 public void trustAllCertificates (boolean trustAllCertificates ) {
198198 this .serverConfig .setTrustAllCertificates (trustAllCertificates );
@@ -662,7 +662,7 @@ public CompletableFuture<UserDetailsAnswer> getUserAsync(String userId) {
662662 }
663663
664664 /**
665- * Gets user details of currently logged in user
665+ * Gets user details of currently logged- in user
666666 *
667667 * @return all user details
668668 */
@@ -1136,7 +1136,7 @@ public CompletableFuture<XMLAnswer> editShareAsync(int shareId, Map<ShareData, S
11361136 * nextcloud server
11371137 * @param downloadpath Local path where the file has to be downloaded in the
11381138 * local machine
1139- * @return boolean true if sucessfull
1139+ * @return boolean true if successful
11401140 * @throws java.io.IOException In case of IO errors
11411141 */
11421142 public boolean downloadFile (String remotepath , String downloadpath ) throws IOException {
@@ -1219,7 +1219,7 @@ public String getAppConfigAppKeyValue(String appConfigAppKeyPath) {
12191219 * @param appConfigAppKey a key name as returned by
12201220 * {@link #getAppConfigAppKeys(String)}
12211221 * @param value the value to set
1222- * @return true if sucessfully set
1222+ * @return true if successfully set
12231223 */
12241224 public boolean setAppConfigAppKeyValue (String appConfigApp , String appConfigAppKey , Object value ) {
12251225 return cc .setAppConfigAppKeyValue (appConfigApp , appConfigAppKey , value );
@@ -1230,7 +1230,7 @@ public boolean setAppConfigAppKeyValue(String appConfigApp, String appConfigAppK
12301230 * @param appConfigAppKeyPath the full appConfigAppKeyPath combining
12311231 * appConfigApp and appConfigAppKey with "/"
12321232 * @param value the value to set
1233- * @return Operation sucessfull
1233+ * @return Operation successful
12341234 */
12351235 public boolean setAppConfigAppKeyValue (String appConfigAppKeyPath , Object value ) {
12361236 return cc .setAppConfigAppKeyValue (appConfigAppKeyPath , value );
@@ -1243,7 +1243,7 @@ public boolean setAppConfigAppKeyValue(String appConfigAppKeyPath, Object value)
12431243 * {@link #getAppConfigApps()}
12441244 * @param appConfigAppkey a key name as returned by
12451245 * {@link #getAppConfigAppKeys(String)}
1246- * @return Operation sucessfull
1246+ * @return Operation successful
12471247 */
12481248 public boolean deleteAppConfigAppKeyEntry (String appConfigApp , String appConfigAppkey ) {
12491249 return cc .deleteAppConfigAppKeyEntry (appConfigApp , appConfigAppkey );
0 commit comments