faff0d6ca4
blog; formatting
2019-09-30 23:03:45 -07:00
8ce631e80e
blog; add 0.2.0/0.3.0 post
2019-09-30 22:48:04 -07:00
265bcc6780
Cleaned up some documentation typos. -mw
2019-09-30 09:02:55 -05:00
7eac8e6a37
docs; encapsulation legibility fixes
2019-09-18 01:43:34 -07:00
fa2a3d9576
Clarify modulus documentation for sign
...
closes #695
2019-09-17 22:27:47 -07:00
0e67667010
Update Encapsulation documentation to be clearer
...
fixes #691
2019-09-17 22:18:55 -07:00
451098db05
docs: Fixed broken link to overview about maps
...
Closes #672
2019-04-09 17:44:15 +02:00
fe3aa60601
Update note about path to visual studio solution.
2019-03-24 21:36:21 +01:00
a437e804ba
Added String.fromByte with docs and unit test
2019-02-27 08:10:54 -05:00
9347c5c61a
Update Call to WrenInterpret in Docs
...
Fixes #599 by updating the arguments to WrenInterpret to match the new
API.
2019-02-12 06:54:58 +00:00
6ac829947a
blog; fix twitter link to munificentbob (thanks @noelfb)
2019-02-07 20:40:44 -08:00
25a1431fa7
docs; add some links to blog post
2019-02-07 13:07:21 -08:00
27a08151e7
blog; clarify weird grammar (sponge)
2019-02-05 19:39:38 -08:00
57a1d809d8
docs; replace wren repo URL to point to organization
2019-02-05 18:41:31 -08:00
7cc7c715c9
docs; list; add + operator documentation
2019-02-05 18:18:38 -08:00
21024bfa13
docs; formatting and tidying
...
- quick clean up pass on layout and colors for clarity/legibility
- added logo to the sidebar
- fix various css things like a full height page when content is shorter, so the footer doesn't creep away from the bottom
- start using em instead of px for consistency across devices
2019-02-05 18:18:24 -08:00
2d449cd4c9
docs; add blog section with simple rss
...
- rss is hand written right now
- see the hello wren blog post for reasoning
2019-02-05 18:15:29 -08:00
d01905ef80
Fix broken link for error handling
2018-12-19 12:39:52 -08:00
09f4beff4a
Add trim methods on String:
...
- trim()
- trim(chars)
- trimEnd()
- trimEnd(chars)
- trimStart()
- trimStart(chars)
2018-07-15 10:48:56 -07:00
ef5f38b48f
Turn on auto-deploying docs.
...
Looks like it's working now. <crosses fingers>
2018-07-14 21:35:33 -07:00
52f08aec05
Install the custom pygments lexer using python3.
2018-07-14 11:44:53 -07:00
4c9209c1b2
Update file.markdown
...
minor fix to close() language
2018-06-03 23:06:40 -05:00
64f8bf7ae3
Merge pull request #524 from bjorn/master
...
Small documentation fixes
2018-04-25 21:09:48 -07:00
372cd3e197
Small documentation fixes
2018-04-06 10:34:12 +02:00
4442b37411
fixed typo, function declares data, body uses file
2018-04-05 23:02:30 +02:00
7487eeab49
Merge pull request #515 from kjk/patch-1
...
fix bindForeignMethod() example
2018-03-26 07:52:26 -07:00
e1f105fd8e
Merge pull request #484 from feiss/patch-1
...
parameter missing in errorFn
2018-03-22 10:31:01 -07:00
bcc31e63a2
add() method is bound as static but bindForeignMethod responds to non-static
2018-03-20 17:13:28 -07:00
f866ee7003
Vendor GYP and libuv into the repo.
...
Instead of dynamically downloading these as needed during a build, this
checks in those two dependencies directly into the Wren repo. That's a
little lame because users of Wren who aren't building the CLI don't
actually need them, but they aren't too big, so it's not a huge deal.
It makes builds (particularly on Travis) more reliable, because they
don't have to pull down additional content over the network.
2018-03-14 07:27:29 -07:00
d1a772e820
parameter missing in errorFn
2017-11-14 16:56:16 +01:00
7b326d804b
Merge pull request #475 from KyleCharters/master
...
Correct method examples in Range docs
2017-10-31 16:24:58 -07:00
b45cab28d1
Fix embedding path in getting started.
2017-10-31 21:47:51 +01:00
1be76bb478
Correct method examples in Range docs
2017-10-23 13:48:43 -04:00
88ff8f90ef
Merge pull request #474 from minirop/typo-in-doc
...
missing language specifier and variable declaration
2017-10-19 22:12:25 -07:00
1661f5368f
Allow passing a value when first starting a fiber.
...
If the function the fiber is created from takes a parameter, the value
passed to the first call() or transfer() gets bound to that parameter.
Also, this now correctly handles fibers with functions that take
parameters. It used to leave the stack in a busted state. Now, it's a
runtime error to create a fiber with a function that takes any more
than one parameter.
2017-10-19 20:45:13 -07:00
e043a95e4e
Edit docs. Docs docs docs.
2017-10-19 19:52:05 -07:00
6444a5f5db
missing language specifier and variable declaration
2017-10-19 21:17:40 +02:00
f8076c2c1c
Revise embedding docs.
2017-10-19 07:02:18 -07:00
e2e16dc4a9
Finish off the rest of the embedding docs.
...
A first draft of them, at least. They probably need some editing.
Remove the "Application Lifecycle" page for now. I do intend to add
some docs about how fibers interact with the host app, but I can do
that later.
2017-10-17 08:26:06 -07:00
2021e086bf
Don't automatically flush on every System.write().
...
It's handy because it ensures writes are flushed to the terminal before
any calls to read from stdin, but it's also gratuitously slow.
Instead, added a Stdout class with an explicit flush() method that can
be called by the user.
Fix #445 .
2017-10-09 07:16:05 -07:00
eba0b97aa2
Merge pull request #472 from KyleCharters/master
...
Add Num .round
2017-10-06 07:51:55 -07:00
2bb531d860
Tweak Fiber.error docs.
2017-10-05 06:50:45 -07:00
84f2252c68
Add Num .round
2017-09-20 20:27:02 -04:00
16bab57056
fix #468
2017-09-16 21:38:35 -07:00
e9896544c8
Typo fix: is only be -> will only be
2017-04-04 15:29:53 -05:00
a01b8d12bd
Typo fix: askes -> asks
2017-03-30 20:20:02 -05:00
8f14bfb4b8
Fix typo in Num documentation
...
The documentation for the bitwise or operator described the behavior of the bitwise and operator.
2017-03-30 17:45:12 -05:00
b32c445f96
Show constructing "blondie" instance in functions doc.
...
Fix #432 .
2017-03-23 21:22:07 -07:00
9f93119377
Merge branch 'take_and_skip' of https://github.com/bjorn/wren into bjorn-take_and_skip
2017-03-15 07:15:00 -07:00
9efb18bae2
Typo: "seperator" -> "separator".
2017-03-15 07:06:07 -07:00