Skip to content

Commit 2a799e5

Browse files
magicusAndrey Turbanov
and
Andrey Turbanov
committedOct 18, 2022
8285306: Fix typos in java.desktop
Co-authored-by: Andrey Turbanov <aturbanov@openjdk.org> Reviewed-by: aturbanov, prr
1 parent d1f7945 commit 2a799e5

File tree

483 files changed

+1017
-1017
lines changed

Some content is hidden

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

483 files changed

+1017
-1017
lines changed
 

‎src/java.desktop/aix/classes/sun/awt/X11InputMethod.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public synchronized void deactivate(boolean isTemporary) {
125125
/* Usually as the client component, let's call it component A,
126126
loses the focus, this method is called. Then when another client
127127
component, let's call it component B, gets the focus, activate is first called on
128-
the previous focused compoent which is A, then endComposition is called on A,
128+
the previous focused component which is A, then endComposition is called on A,
129129
deactivate is called on A again. And finally activate is called on the newly
130130
focused component B. Here is the call sequence.
131131
@@ -466,7 +466,7 @@ public void setCompositionEnabled(boolean enable) {
466466
return.
467467
setCompositionEnabledNative may throw UnsupportedOperationException.
468468
Don't try to catch it since the method may be called by clients.
469-
Use package private mthod 'resetCompositionState' if you want the
469+
Use package private method 'resetCompositionState' if you want the
470470
exception to be caught.
471471
*/
472472
boolean pre, post;

‎src/java.desktop/aix/native/libawt/porting_aix.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
/*
2828
* Header file to contain porting-relevant code which does not have a
2929
* home anywhere else.
30-
* This is intially based on hotspot/src/os/aix/vm/{loadlib,porting}_aix.{hpp,cpp}
30+
* This is initially based on hotspot/src/os/aix/vm/{loadlib,porting}_aix.{hpp,cpp}
3131
*/
3232

3333
/*
3434
* Aix' own version of dladdr().
35-
* This function tries to mimick dladdr(3) on Linux
35+
* This function tries to mimic dladdr(3) on Linux
3636
* (see http://linux.die.net/man/3/dladdr)
3737
* dladdr(3) is not POSIX but a GNU extension, and is not available on AIX.
3838
*
@@ -50,7 +50,7 @@
5050

5151
typedef struct {
5252
const char *dli_fname; /* file path of loaded library */
53-
void *dli_fbase; /* doesn't make sence on AIX */
53+
void *dli_fbase; /* doesn't make sense on AIX */
5454
const char *dli_sname; /* symbol name; "" if not known */
5555
void *dli_saddr; /* address of *entry* of function; not function descriptor; */
5656
} Dl_info;

0 commit comments

Comments
 (0)