Skip to content

Commit b1d077b

Browse files
committed
Fix Java terminology in README
1 parent 978903c commit b1d077b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Loads the class given by className such that it acts and feels like a javascript
370370

371371
__Arguments__
372372

373-
* className - The name of the class to create. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
373+
* className - The name of the class to create. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
374374

375375
__Example__
376376

@@ -394,7 +394,7 @@ otherwise it will be the first argument in the callback.
394394

395395
__Arguments__
396396

397-
* className - The name of the class to create. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
397+
* className - The name of the class to create. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
398398
* callback(err, item) - Callback to be called when the class is created.
399399

400400
__Example__
@@ -436,7 +436,7 @@ otherwise it will be the first argument in the callback.
436436

437437
__Arguments__
438438

439-
* className - The name of the class to call the method on. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
439+
* className - The name of the class to call the method on. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
440440
* methodName - The name of the method to call. The method name can include the full signature (see [Getting the full method signature](#getFullMethodSignature)).
441441
* callback(err, item) - Callback to be called when the class is created.
442442

@@ -483,7 +483,7 @@ Gets a static field value from the specified class.
483483

484484
__Arguments__
485485

486-
* className - The name of the class to get the value from. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
486+
* className - The name of the class to get the value from. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
487487
* fieldName - The name of the field to get the value from.
488488

489489
__Example__
@@ -498,7 +498,7 @@ Sets a static field value on the specified class.
498498

499499
__Arguments__
500500

501-
* className - The name of the class to set the value on. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
501+
* className - The name of the class to set the value on. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
502502
* fieldName - The name of the field to set the value on.
503503
* newValue - The new value to assign to the field.
504504

@@ -514,7 +514,7 @@ Creates a new java array of type class.
514514

515515
__Arguments__
516516

517-
* className - The name of the type of array elements. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
517+
* className - The name of the type of array elements. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
518518
* values - A javascript array of values to assign to the java array.
519519

520520
__Example__
@@ -616,7 +616,7 @@ garbage collection.
616616

617617
__Arguments__
618618

619-
* interfaceName - The name of the interface to proxy. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
619+
* interfaceName - The name of the interface to proxy. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
620620
* functions - A hash of functions matching the function in the interface.
621621

622622
__Example__

0 commit comments

Comments
 (0)