-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor spelling/grammer fixes for the README #33
base: main
Are you sure you want to change the base?
Conversation
@@ -17,7 +17,7 @@ | |||
> | |||
>*"We didn't have a good story about migrating continuations between threads." - Disruptek* | |||
|
|||
Have you ever asked yourself what would a lock-free MPMC queue look like in nim? | |||
Have you ever asked yourself what would a lock-free MPMC (*multi-producer multi-consumer*) queue looks like in Nim? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look is the correct grammatical form here, because we're speaking of the singular -- a lock-free ... queue
@@ -41,7 +41,7 @@ and Portable Concurrent FIFO Queues With Deterministic Memory Reclamation"](pape | |||
|
|||
The algorithm was chosen to help progress the concurrency story of [CPS](https://github.com/nim-works/cps) for which this was bespokingly made. | |||
|
|||
After adapting the algorithm to nim CPS, disruptek adapted the queue for **any ref object** and was instrumental in ironing out the bugs and improving the performance of Loony. | |||
After adapting the algorithm to Nim CPS, disruptek adapted the queue for **any ref object** and was instrumental in ironing out the bugs and improving the performance of Loony. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would sooner remove this; no one really cares.
@@ -65,7 +65,8 @@ With the 11 bit aligned implementation we have: | |||
|
|||
ORC is not supported (See [Issue #4](https://github.com/shayanhabibi/loony/issues/4)) | |||
|
|||
Spawn (Nims `threadpool` module) is not supported. *It won't ever be; don't use spawn unless you are a masochist in general.* | |||
Spawn (via Nim's `threadpool` module) is not supported. *It won't ever be; don't use spawn unless you are a masochist in general.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure why this would be the case; I think it'd make more sense to wait for a bug report so we can understand the problem better, and ensure we have a canary to show when it suddenly starts working.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just modified the existing sentence. Should I remove it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
No description provided.