diff --git a/README.kindle b/README.kindle index dc9e48c5..7e6f46b9 100644 --- a/README.kindle +++ b/README.kindle @@ -20,6 +20,8 @@ To create the kindle version: * the new file is cplusplus.mobi + * open the browser while in the directory containing the .mobi file (?) + * Follow the instructions at https://kdp.amazon.com/self-publishing/dashboard @@ -28,6 +30,9 @@ To create the kindle version: - Click on the elipses (...) -> Edit e-book details - Click on C++ Annotations - Edit the version +- Save and Continue (several times) + +not required anymore: - Click Browse to go to the location where the .mobi file is and upload diff --git a/annotations/html/cplusplus.opf b/annotations/html/cplusplus.opf index 23f712c8..c620df84 100644 --- a/annotations/html/cplusplus.opf +++ b/annotations/html/cplusplus.opf @@ -2,13 +2,13 @@ - C++ Annotations Version 11.2.0 + C++ Annotations Version 12.0.0 en-us EA989A949A Frank B. BrokkenThe University of Groningen9036704707Computing, InternetNov 18, 2019 +BASICCode="COM000000">Computing, InternetDec 25, 2021 @@ -41,7 +41,8 @@ BASICCode="COM000000">Computing, InternetNov 18, 2019 - + + @@ -70,6 +71,7 @@ BASICCode="COM000000">Computing, InternetNov 18, 2019 + diff --git a/annotations/yo/coroutines/intro.yo b/annotations/yo/coroutines/intro.yo index 1090e908..a2ba214d 100644 --- a/annotations/yo/coroutines/intro.yo +++ b/annotations/yo/coroutines/intro.yo @@ -88,7 +88,7 @@ While tt(fiboCoro) lays the foundation for obtaining a sequence of fibonacci numbers, resuming a coroutine doesn't mean calling a function the way the above member tt(Fibo::next) is called: there are no arguments; there is no preparation of local variables; and there is no stack -handling. Instead there's merely a direct jump to the instruction just beynd +handling. Instead there's merely a direct jump to the instruction just beyond the coroutine's suspension point. When the coroutine's code encounters the next suspension point (which occurs in tt(fiboCoro) at it's next cycle, when it again reaches its tt(co_yield) statement) then the program's execution