Skip to content

Commit b645c58

Browse files
committed
Fix typos in make-librebol.r, bump copyright dates
1 parent 1af9c43 commit b645c58

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tools/bootstrap-shim.r

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ REBOL [
66
Rebol 3 Language Interpreter and Run-time Environment
77
"Ren-C" branch @ https://github.com/metaeducation/ren-c
88
9-
Copyright 2012-2022 Ren-C Open Source Contributors
9+
Copyright 2012-2024 Ren-C Open Source Contributors
1010
REBOL is a trademark of REBOL Technologies
1111
}
1212
License: {

tools/common-emitter.r

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ REBOL [
44
Type: module
55
Name: Common-Emitter
66
Rights: {
7-
Copyright 2016-2018 Ren-C Open Source Contributors
7+
Copyright 2016-2024 Ren-C Open Source Contributors
88
REBOL is a trademark of REBOL Technologies
99
}
1010
License: {
@@ -393,7 +393,7 @@ export make-emitter: func [
393393
**
394394
** REBOL [R3] Language Interpreter and Run-time Environment
395395
** Copyright 2012 REBOL Technologies
396-
** Copyright 2012-2018 Ren-C Open Source Contributors
396+
** Copyright 2012-2024 Ren-C Open Source Contributors
397397
** REBOL is a trademark of REBOL Technologies
398398
** Licensed under the Apache License, Version 2.0
399399
**

tools/make-librebol.r

+3-3
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ e-lib/emit [ver {
787787
#define LIBREBOL_PREFIX(api_name) API_##api_name
788788
789789
/*
790-
* Extern prototypes for RL_XXX, don't call these functions directly.
790+
* Extern prototypes for API_XXX, don't call these functions directly.
791791
* They use vaptr instead of `...`, and may not do all the proper
792792
* exception/longjmp handling needed.
793793
*/
@@ -902,8 +902,8 @@ e-lib/emit [ver {
902902
* be turned into rebI(...) to produce a RebolValue, instead of giving
903903
* an invalid type error.
904904
*
905-
* These are converters are predefined, but you can add your own, like
906-
* this one for converting std::string to TEXT!:
905+
* These converters are predefined, but you can add your own, like this
906+
* one for converting std::string to TEXT!:
907907
*
908908
* #include <string>
909909
*

0 commit comments

Comments
 (0)