Skip to content

Commit 6cd6c55

Browse files
committed
A bit more tweaks for readme
1 parent d4dfd70 commit 6cd6c55

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ A number of new Lua functions were also introduced.
405405
### pawn
406406

407407
```lua
408-
variant pawn ( string fnName, ... )
408+
variant pawn(string fnName, ...)
409409
```
410410

411411
Calls a Pawn function. The function must be public, must be defined in
@@ -422,7 +422,7 @@ local player = pawn('pawnTestfn1', 0.5, 'Test string')
422422
### amxIsPluginLoaded
423423

424424
```lua
425-
bool amxIsPluginLoaded ( string pluginName )
425+
bool amxIsPluginLoaded(string pluginName)
426426
```
427427

428428
Checks if a specific SA-MP server plugin is currently loaded. pluginName
@@ -431,7 +431,7 @@ is the name of the plugin without a file extension.
431431
### amxRegisterLuaPrototypes
432432

433433
```lua
434-
bool amxRegisterLuaPrototypes ( table prototypes )
434+
bool amxRegisterLuaPrototypes(table prototypes)
435435
```
436436

437437
Registers prototypes of Lua functions that can subsequently be called
@@ -453,15 +453,15 @@ amxRegisterLuaPrototypes(
453453
### amxVersion
454454

455455
```lua
456-
float amxVersion ( )
456+
float amxVersion()
457457
```
458458

459459
Returns the *amx* version as a floating point number, for example `1.3`.
460460

461461
### amxVersionString
462462

463463
```lua
464-
string amxVersionString ( )
464+
string amxVersionString()
465465
```
466466

467467
Returns the complete *amx* version string.
@@ -474,7 +474,7 @@ unloaded.
474474
### onAMXStart
475475

476476
```lua
477-
onAMXStart ( resource res, string amxName )
477+
onAMXStart(resource res, string amxName)
478478
```
479479

480480
Triggered when an .amx file has just finished loading and initializing.
@@ -489,7 +489,7 @@ registered their functions yet.
489489
### onAMXStop
490490

491491
```lua
492-
onAMXStop ( resource res, string amxName )
492+
onAMXStop(resource res, string amxName)
493493
```
494494

495495
Triggered when an .amx file was unloaded. The source of this event is

0 commit comments

Comments
 (0)