Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aadrian authored and ahadas committed Jul 4, 2019
1 parent e53adaf commit 977365b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public Insets getInsets() {
// Adds buttons that allow to collapse and expand the split pane in both directions
splitPane.setOneTouchExpandable(true);

// Disable all the JSPlitPane accessibility shortcuts that are registered by default, as some of them
// Disable all the JSplitPane accessibility shortcuts that are registered by default, as some of them
// conflict with default mucommander action shortcuts (e.g. F6 and F8)
splitPane.disableAccessibilityShortcuts();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public SplashScreen(String version, String loadingMessage) {

// Resolve the URL of the splash logo image within the JAR file and create an ImageIcon
// Note: DO NOT use IconManager to load the icon as it would trigger ConfigurationManager's initialization
// and we don't want that, we want SpashScreen to be displayed as soon as possible
// and we don't want that, we want SplashScreen to be displayed as soon as possible
ImageIcon imageIcon = new ImageIcon(ResourceLoader.getResourceAsURL(SPLASH_IMAGE_PATH));

// Wait for the image to be fully loaded
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ public void mouseExited(MouseEvent e) {

public void componentShown(ComponentEvent e) {
// Invoked when the component has been made visible (apparently not called when just created)
// Status bar needs to be updated sihce it is not updated when not visible
// Status bar needs to be updated since it is not updated when not visible
updateStatusInfo();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* {@link com.mucommander.desktop.DesktopManager#getTrash()}.
* When the button is clicked, a popup menu is displayed, allowing to perform a choice of actions such as opening
* the trash or emptying it.
* Note that this button will only be functional if a trash is avaiable on the current platform.
* Note that this button will only be functional if a trash is available on the current platform.
*
* @author Maxence Bernard
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.mucommander.commons.file.AbstractFile;

/**
* A common interface for instanciating {@link FileEditor} implementations, and finding out if a editor is capable
* A common interface for instantiating {@link FileEditor} implementations, and finding out if a editor is capable
* of editing a particular file.
*
* @author Nicolas Rinaudo, Maxence Bernard
Expand All @@ -30,7 +30,7 @@ public interface EditorFactory {
/**
* Returns <code>true</code> if this factory can create a file editor for the specified file.
* <p>
* The FileEditor may base its decision stricly upon the file's name and its extension or may wish to read some of
* The FileEditor may base its decision strictly upon the file's name and its extension or may wish to read some of
* the file and compare it to a magic number.
* </p>
* @param file file for which a editor must be created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/**
* A specialized <code>JFrame</code> that displays a {@link FileEditor} for a given file and provides some common
* editing functionalities. The {@link FileEditor} instance is provided by {@link EditorRegistrar}.
* editing functionality. The {@link FileEditor} instance is provided by {@link EditorRegistrar}.
*
* @author Maxence Bernard, Arik Hadas
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected final void setCurrentFile(AbstractFile file) {
}

/**
* Open a given AbstraceFile for display.
* Open a given AbstractFile for display.
*
* @param file the file to be presented
* @throws IOException in case of an I/O problem
Expand Down

0 comments on commit 977365b

Please sign in to comment.