Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface EelReceiveChannel {
* To read to the end, read until result is [ReadResult.EOF].
*
* @return [ReadResult] (see its doc for usage instructions)
* @throws EelReceiveChannelException if some I/O error occured that certainly can be treated just as [ReadResult.EOF].
* @throws EelReceiveChannelException if some I/O error occurred that certainly can be treated just as [ReadResult.EOF].
* The channel is unusable after receiving the error. No methods except [closeForReceive] may be called.
*/
@Throws(EelReceiveChannelException::class)
Expand All @@ -30,7 +30,7 @@ interface EelReceiveChannel {
* I.e., it is possible that [available] returns 0 even though it's possible to read something immediately.
* Moreover, implementations may return 0 every time.
*
* @throws EelReceiveChannelException if some I/O error occured that certainly can be treated just as [ReadResult.EOF].
* @throws EelReceiveChannelException if some I/O error occurred that certainly can be treated just as [ReadResult.EOF].
* The channel is unusable after receiving the error. No methods except [closeForReceive] may be called.
*/
@Throws(EelReceiveChannelException::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ internal class NewRemoteDevModuleAction : DumbAwareAction() {
catch (e: Exception) {
LOG.warn("Couldn't create Remote Dev Module", e)
withContext(Dispatchers.EDT) {
Messages.showErrorDialog(project, "Remote Dev Module created only partially. An exception occured during the process: ${e.message}.", "Remote Dev Module Creation Failed")
Messages.showErrorDialog(project, "Remote Dev Module created only partially. An exception occurred during the process: ${e.message}.", "Remote Dev Module Creation Failed")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public static void removeInlaysAssociatedWithSession(XDebugSession session) {
/**
* Check if the error has happened while set up or tear down.
*
* @param frames of the thread where an exception has occured
* @param frames of the thread where an exception has occurred
*/
public static boolean isErrorInTestSetUpOrTearDown(@NotNull List<PyStackFrameInfo> frames) {
for (PyStackFrameInfo frameInfo : frames) {
Expand Down