Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit edc0625

Browse files
committed
[[ Java FFI ]] Fix styling in documentation
1 parent cbd0834 commit edc0625

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

docs/guides/LiveCode Builder Language Reference.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -520,17 +520,17 @@ by listing it in a DEF module).
520520

521521
Here *calling* specifies the calling convention which can be one of:
522522

523-
- default
524-
- stdcall
525-
- thiscall
526-
- fastcall
527-
- cdecl
528-
- pascal
529-
- register
530-
531-
All but 'default' are Win32-only, and on Win32 'default' maps to
532-
'cdecl'. If a Win32-only calling convention is specified on a
533-
non-Windows platform then it is taken to be 'default'.
523+
- `default`
524+
- `stdcall`
525+
- `thiscall`
526+
- `fastcall`
527+
- `cdecl`
528+
- `pascal`
529+
- `register`
530+
531+
All but `default` are Win32-only, and on Win32 `default` maps to
532+
`cdecl`. If a Win32-only calling convention is specified on a
533+
non-Windows platform then it is taken to be `default`.
534534

535535
#### The Java binding string
536536

@@ -540,7 +540,7 @@ The Java binding string has the following form:
540540

541541
Here *className* is the qualified name of the Java class to bind to.
542542

543-
Here *functionType* is either empty, or 'get' or 'set', which are
543+
Here *functionType* is either empty, or `get` or `set`, which are
544544
currently used for getting and setting member fields of a Java class.
545545

546546
For example
@@ -552,19 +552,19 @@ are binding strings for setting and getting the `time` field of a
552552
Calendar object.
553553

554554
Here *function* specifies the name of the method or field to bind to. The
555-
function 'new' may be used to call a class constructor. *function* also
555+
function `new` may be used to call a class constructor. *function* also
556556
includes the specification of function signature, according to the
557557
[standard rules for forming these](http://journals.ecs.soton.ac.uk/java/tutorial/native1.1/implementing/method.html)
558558
when calling the JNI.
559559

560560
Here *calling* specifies the calling convention which can be one of:
561561

562-
- instance
563-
- static
564-
- nonvirtual
562+
- `instance`
563+
- `static`
564+
- `nonvirtual`
565565

566566
Instance and nonvirtual calling conventions require instances of the given
567-
java class, so the foreign handler declaration will always require a Java
567+
Java class, so the foreign handler declaration will always require a Java
568568
object parameter.
569569

570570
### Properties

0 commit comments

Comments
 (0)