Skip to content

Commit 32092fb

Browse files
committed
[DATALAD RUNCMD] run codespell throughout but ignore fail
=== Do not change lines below === { "chain": [], "cmd": "codespell -w || :", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent 0b4334e commit 32092fb

File tree

101 files changed

+195
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+195
-195
lines changed

Changelog.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Cyberduck
22
https://cyberduck.io/
33

44
8.7.2
5-
- [Bugfix] Missing digest header when commiting large file upload (Box) (#14564)
5+
- [Bugfix] Missing digest header when committing large file upload (Box) (#14564)
66
- [Bugfix] Modification date not set in upload (Dropbox) (#15381)
77

88
8.7.1
@@ -355,7 +355,7 @@ https://cyberduck.io/
355355

356356
7.8.1
357357
- [Feature] Provide armhf/aarch64 RPM and DEB packages (CLI, Rasperry Pi, Linux) (#10447)
358-
- [Bugfix] Missing folers in directory listing (OneDrive, SharePoint)
358+
- [Bugfix] Missing folders in directory listing (OneDrive, SharePoint)
359359
- [Bugfix] Interoperability with Tencent Cloud Object Storage (S3)
360360
- [Bugfix] No file size displayed for files (Google Drive)
361361

@@ -1528,7 +1528,7 @@ https://cyberduck.io/
15281528
- [Feature] Copy directory listing to clipboard (#2372)
15291529
- [Feature] Support for thirdparty terminal applications (#2987)
15301530
- [Feature] Change SSH options for open in Terminal.app (#4232)
1531-
- [Feature] Unsecure connection warning when password is transmitted in plaintext
1531+
- [Feature] Insecure connection warning when password is transmitted in plaintext
15321532
- [Feature] Alert to change connection to TLS if server supports AUTH TLS (FTP)
15331533
- [Feature] Edit metadata for multiple files (S3, Google Cloud Storage)
15341534
- [Feature] Menu items to copy HTTP, CDN, signed & authenticated URLs to clipboard (#4207)
@@ -1910,7 +1910,7 @@ https://cyberduck.io/
19101910
- [Bugfix] Cannot login with colon in username (#309)
19111911
- [Bugfix] Cannot delete directory from server (#256)
19121912
- [Bugfix] Permission errors when downloading files from read-only directories (#264)
1913-
- [Bugfix] Change download keyboad shortcut (#277)
1913+
- [Bugfix] Change download keyboard shortcut (#277)
19141914
- [Bugfix] Certain operations trigger change of character encoding to default
19151915
- [Bugfix] Character encoding issues (#238, #333, #361, #390)
19161916
- [Bugfix] Improved compatibility with certain FTP servers

binding/src/main/java/ch/cyberduck/binding/AbstractTableDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public String selectedColumnIdentifier() {
5555
}
5656

5757
/**
58-
* @return By default no column is editable. To be overriden in subclasses
58+
* @return By default no column is editable. To be overridden in subclasses
5959
*/
6060
public boolean isColumnRowEditable(final NSTableColumn column, final NSInteger row) {
6161
return false;

binding/src/main/java/ch/cyberduck/binding/BundleController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void loadBundle(final String bundleName) {
135135
protected boolean awaked;
136136

137137
/**
138-
* Called by the runtime after the NIB file has been loaded sucessfully
138+
* Called by the runtime after the NIB file has been loaded successfully
139139
*/
140140
public void awakeFromNib() {
141141
log.debug("awakeFromNib");

binding/src/main/java/ch/cyberduck/binding/application/NSApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public static NSApplication sharedApplication() {
466466
* <i>native declaration : :149</i><br>
467467
* Conversion Error : /**<br> * * Present a sheet on the given window. When the modal session is ended,<br> * *
468468
* the didEndSelector will be invoked in the modalDelegate. The didEndSelector<br> * * should have the following
469-
* signature, and will be invoked when the modal session ends.<br> * * This method should dimiss the sheet using
469+
* signature, and will be invoked when the modal session ends.<br> * * This method should dismiss the sheet using
470470
* orderOut:<br> * * - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void
471471
* *)contextInfo;<br> * *<br> * Original signature : <code>void beginSheet(NSWindow*, NSWindow*, id, null,
472472
* void*)</code><br> * /<br> - (void)beginSheet:(NSWindow*)sheet modalForWindow:(NSWindow*)docWindow

binding/src/main/java/ch/cyberduck/binding/application/NSTableColumn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public void setMaxWidth(double width) {
195195
public abstract com.sun.jna.Pointer sortDescriptorPrototype();
196196

197197
/**
198-
* The resizing mask controls the resizability of a table column. Compatability Note: This method replaces setResizable.<br>
198+
* The resizing mask controls the resizability of a table column. Compatibility Note: This method replaces setResizable.<br>
199199
* Original signature : <code>void setResizingMask(NSUInteger)</code><br>
200200
* <i>native declaration : :78</i>
201201
*/

binding/src/main/java/ch/cyberduck/binding/application/NSTableView.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public interface Delegate {
160160
public abstract boolean allowsColumnReordering();
161161

162162
/**
163-
* Controls whether the user can attemp to resize columns by dragging between headers. If flag is YES the user can
163+
* Controls whether the user can attempt to resize columns by dragging between headers. If flag is YES the user can
164164
* resize columns; if flag is NO the user can't. The default is YES. Columns can only be resized if a column allows
165165
* user resizing. See NSTableColumn setResizingMask: for more details. You can always change columns
166166
* programmatically regardless of this setting.<br> Original signature : <code>void
@@ -466,7 +466,7 @@ public interface Delegate {
466466
* <i>native declaration : :212</i><br>
467467
* Conversion Error : /**<br>
468468
* * This method computes and returns an image to use for dragging. Override this to return a custom image. 'dragRows' represents the rows participating in the drag. 'tableColumns' represent the columns that should be in the output image. Note that drawing may be clipped to the visible rows, and columns. 'dragEvent' is a reference to the mouse down event that began the drag. 'dragImageOffset' is an in/out parameter. This method will be called with dragImageOffset set to NSZeroPoint, but it can be modified to re-position the returned image. A dragImageOffset of NSZeroPoint will cause the image to be centered under the mouse.<br>
469-
* * Compatability Note: This method replaces dragImageForRows:event:dragImageOffset:. If present, this is used instead of the deprecated method.<br>
469+
* * Compatibility Note: This method replaces dragImageForRows:event:dragImageOffset:. If present, this is used instead of the deprecated method.<br>
470470
* * Original signature : <code>NSImage* dragImageForRowsWithIndexes(NSIndexSet*, NSArray*, NSEvent*, null)</code><br>
471471
* * /<br>
472472
* - (NSImage*)dragImageForRowsWithIndexes:(NSIndexSet*)dragRows tableColumns:(NSArray*)tableColumns event:(NSEvent*)dragEvent offset:(null)dragImageOffset; (Argument dragImageOffset cannot be converted)
@@ -541,7 +541,7 @@ public void setDropRow(NSInteger row, NSUInteger op) {
541541

542542
/**
543543
* Sets the column selection using the indexes. Selection is set/extended based on the extend flag. <br>
544-
* Compatability Note: This method replaces selectColumn:byExtendingSelection:<br> If a subclasser implements only
544+
* Compatibility Note: This method replaces selectColumn:byExtendingSelection:<br> If a subclasser implements only
545545
* the deprecated single-index method (selectColumn:byExtendingSelection:), the single-index method will be invoked
546546
* for each index. If a subclasser implements the multi-index method (selectColumnIndexes:byExtendingSelection:),
547547
* the deprecated single-index version method will not be used. This allows subclassers already overriding the
@@ -555,7 +555,7 @@ public void setDropRow(NSInteger row, NSUInteger op) {
555555
/**
556556
* Sets the row selection using 'indexes'. Selection is set/extended based on the extend flag. On 10.5 and greater,
557557
* selectRowIndexes:byExtendingSelection: will allow you to progrmatically select more than one index, regardless of
558-
* the allowsMultipleSelection and allowsEmptySelection options set on the table.<br> Compatability Note: This
558+
* the allowsMultipleSelection and allowsEmptySelection options set on the table.<br> Compatibility Note: This
559559
* method replaces selectRow:byExtendingSelection:<br> If a subclasser implements only the deprecated single-index
560560
* method (selectRow:byExtendingSelection:), the single-index method will be invoked for each index. If a
561561
* subclasser implements the multi-index method (selectRowIndexes:byExtendingSelection:), the deprecated
@@ -782,7 +782,7 @@ public void editRow(NSInteger column, NSInteger row, boolean select) {
782782
* Conversion Error : NSRect
783783
*/
784784
/**
785-
* Deprecated in Mac OS 10.3. Calls setGridStyleMask:, setting grid style to either None, or vertical and horizonal
785+
* Deprecated in Mac OS 10.3. Calls setGridStyleMask:, setting grid style to either None, or vertical and horizontal
786786
* solid grid lines as appropriate.<br> Original signature : <code>void setDrawsGrid(BOOL)</code><br>
787787
* <i>from NSDeprecated native declaration : :506</i>
788788
*/

binding/src/main/java/ch/cyberduck/binding/foundation/FoundationKitFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ interface NSSearchPathDomainMask {
122122
int NSUserDomainMask = 1;
123123
/// local to the current machine --- place to install items available to everyone on this machine (/Library)
124124
int NSLocalDomainMask = 2;
125-
/// publically available location in the local area network --- place to install items available on the network (/Network)
125+
/// publicly available location in the local area network --- place to install items available on the network (/Network)
126126
int NSNetworkDomainMask = 4;
127127
/// provided by Apple, unmodifiable (/System)
128128
int NSSystemDomainMask = 8;

binding/src/main/java/ch/cyberduck/binding/foundation/NSFileManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public interface _Class extends ObjCClass {
172172
public abstract NSArray contentsOfDirectoryAtPath_error(String path, ObjCObjectByReference error);
173173

174174
/**
175-
* subpathsOfDirectoryAtPath:error: returns an NSArray of Strings represeting the filenames of the items in the
175+
* subpathsOfDirectoryAtPath:error: returns an NSArray of Strings representing the filenames of the items in the
176176
* specified directory and all its subdirectories recursively. If this method returns 'nil', an NSError will be
177177
* returned by reference in the 'error' parameter. If the directory contains no items, this method will return the
178178
* empty array.<br> This method replaces subpathsAtPath:<br> Original signature :

binding/src/main/java/ch/cyberduck/binding/foundation/NSString.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public interface _Class extends ObjCClass {
510510

511511
/**
512512
* Original signature : <code>BOOL getCString(char*, NSUInteger, NSStringEncoding)</code><br>
513-
* NO return if conversion not possible due to encoding errors or too small of a buffer. The buffer should include room for maxBufferCount bytes; this number should accomodate the expected size of the return value plus the NULL termination character, which this method adds. (So note that the maxLength passed to this method is one more than the one you would have passed to the deprecated getCString:maxLength:.)<br>
513+
* NO return if conversion not possible due to encoding errors or too small of a buffer. The buffer should include room for maxBufferCount bytes; this number should accommodate the expected size of the return value plus the NULL termination character, which this method adds. (So note that the maxLength passed to this method is one more than the one you would have passed to the deprecated getCString:maxLength:.)<br>
514514
* <i>from NSStringExtensionMethods native declaration : :192</i>
515515
*/
516516
public abstract boolean getCString_maxLength_encoding(java.nio.ByteBuffer buffer, NSUInteger maxBufferCount, NSUInteger encoding);

box/src/main/java/ch/cyberduck/core/box/BoxLargeUploadService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ public File upload(final Path file, final Local local, final BandwidthThrottle t
103103
.size(f.status.getLength()).offset(f.status.getOffset()).partId(f.part.getId())).collect(Collectors.toList()));
104104
final Optional<File> optional = files.getEntries().stream().findFirst();
105105
if(optional.isPresent()) {
106-
final File commited = optional.get();
106+
final File committed = optional.get();
107107
// Mark parent status as complete
108-
status.withResponse(new BoxAttributesFinderFeature(session, fileid).toAttributes(commited)).setComplete();
109-
return commited;
108+
status.withResponse(new BoxAttributesFinderFeature(session, fileid).toAttributes(committed)).setComplete();
109+
return committed;
110110
}
111111
throw new NotfoundException(file.getAbsolute());
112112
}

0 commit comments

Comments
 (0)