formatting of the readme

This commit is contained in:
Ryan 2017-06-23 12:19:01 -04:00
parent f1c32efb8b
commit 66b96cf567

View File

@ -752,16 +752,16 @@ Updated from 1.7.2 to 1.7.3</br>
Changed how requiring the library works! Changed how requiring the library works!
`require("multi.all")` Will still work as expected; however, with the exception of threading, compat, and intergrations everything else has been moved into the core of the library. `require("multi.all")` Will still work as expected; however, with the exception of threading, compat, and intergrations everything else has been moved into the core of the library.
```lua ```lua
-- This means that these are no longer required and will cause an error if done so -- This means that these are no longer required and will cause an error if done so
require("multi.loop") require("multi.loop")
require("multi.alarm") require("multi.alarm")
require("multi.updater") require("multi.updater")
require("multi.tloop") require("multi.tloop")
require("multi.watcher") require("multi.watcher")
require("multi.tstep") require("multi.tstep")
require("multi.step") require("multi.step")
require("multi.task") require("multi.task")
-- ^ they are all part of the core now -- ^ they are all part of the core now
``` ```
Updated from 1.7.1 to 1.7.2</br> Updated from 1.7.1 to 1.7.2</br>